Springboot+Maven+Tomcat部署

注意事项:

  • springboot部署需要tomcat8以上版本
  • 需要在pom文件中移除tomcat依赖
<exclusions>
    <exclusion>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-tomcatartifactId>
    exclusion>
exclusions>
  • 若使用EL表达式确认web.xml版本为2.3以上,此处举例3.1

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">

web-app>
  • 打包项目先进行clean 在使用package打包项目

你可能感兴趣的:(JAVA,Maven,Tomcat,Springboot)