SLF4J: The requested version 1.7.16 by your slf4j binding is not compatible with [1.6]
原因可能有两个:
1、jar包冲突,build path下可能加入了 slf4j-log4或者 log4j的jar包,删除即可。
2、jar包版本导致的,例如 如果你的Logback是1.0.6版本,那么你的slf4j需要[1.5.5, 1.5.6, 1.5.7, 1.5.8, 1.5.9, 1.5.10, 1.5.11]版本的。
SLF4J: The requested version 1.6 by your slf4j binding is not
compatible with [1.5.5, 1.5.6, 1.5.7, 1.5.8, 1.5.9, 1.5.10, 1.5.11]
不管是Logback版本高还是slf4j的低只要找对匹配的版本即可。
修改完pom记得刷新maven。