排除传递依赖关系使其可以工作,并且也可以调整module-info.java !!!
compile("org.springframework.boot:spring-boot-starter:1.5.3.RELEASE") { exclude group: 'commons-logging', module: 'commons-logging' } compile("org.springframework.boot:spring-boot-starter-web:1.5.3.RELEASE"){ exclude group: 'commons-logging', module: 'commons-logging' }


