码迷,mamicode.com
首页 > 编程语言 > 详细

idea 打包springboot项目报错:404

时间:2018-10-23 20:50:52      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:builder   mave   vol   protected   turn   war包   ali   .com   技术   

1、

技术分享图片

 

 在本地的idea中,我们必须通过context-path(这里是volkswagen)+controller中的路径名访问项目,但是打包后,就不需要这个context-path,需要的是war包名+controller路径访问的形式

2、在测试类上,需要添加@Ignore不让maven将我么的测试类中的内容打成war包。

3、在启动类中,继承SpringBootServletInitializer类,并重写以下方法

//打成war包启动方式
protected SpringApplicationBuilder configure(
SpringApplicationBuilder builder)
{

return builder.sources(DemoApplication.class);
}

idea 打包springboot项目报错:404

标签:builder   mave   vol   protected   turn   war包   ali   .com   技术   

原文地址:https://www.cnblogs.com/yuxifly828/p/9838255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!