标签:head ofo init throw 需要 cep can mis 如何
Spring Boot 默认打包为jar,受公司发布系统限制,不允许上传jar包,需要转为war和zip包,因此在使用Spring Boot时需要转为war。
实现方式:
1、需要App类继承SpringBootServletInitializer,并重写“protected SpringApplicationBuilder configure(SpringApplicationBuilder builder)” 方法。
Starter.java 文件:
2、修改Site的pom文件
<packaging>war</packaging>
3、添加web.xml 文件
如果出现web.xml is missing and <failOnMissingWebXml> is set to true 异常,需要添加web.xml 文件。
Spring Boot 默认是可以不需要web.xml 的,公司框架要求需要web.xml 文件,会读取该文件下相关配置信息。
Deployment Descriptor 右键。
Generate Deployment Descriptor Stub
src/main/webapp/WEB_INF/web.xml
文件了。标签:head ofo init throw 需要 cep can mis 如何
原文地址:http://www.cnblogs.com/xiaocandou/p/8016281.html