1. <dependency>
    2. <groupId>org.springframework.boot</groupId>
    3. <artifactId>spring-boot-starter-web</artifactId>
    4. <exclusions>
    5. <!--spring boot 内置了tomcat,所以我们没有tomcat也可以直接通过jar运行,如果想通过常规的war来部署就在这里移除tomcat就可以了-->
    6. <!-- <exclusion>
    7. <artifactId>spring-boot-starter-tomcat</artifactId>
    8. <groupId>org.springframework.boot</groupId>
    9. </exclusion>-->
    10. <!--spring boot 内置的日志是slf4j与logback,如果想用log4j就移除,并添加相应依赖就可以了-->
    11. <exclusion>
    12. <artifactId>spring-boot-starter-logging</artifactId>
    13. <groupId>org.springframework.boot</groupId>
    14. </exclusion>
    15. </exclusions>
    16. </dependency>