springboot打包成war包步骤以及注意事项

SpringBoot启动方式讲解和部署war项目到tomcat9

简介:SpringBoot常见启动方式讲解和部署war项目Tomcat

1、ide启动
2、jar包方式启动
			maven插件:
			
			
				
					org.springframework.boot
					spring-boot-maven-plugin
				
			
			
			如果没有加,则执行jar包 ,报错如下
				java -jar spring-boot-demo-0.0.1-SNAPSHOT.jar
				no main manifest attribute, in spring-boot-demo-0.0.1-SNAPSHOT.jar
			如果有安装maven 用 mvn spring-boot:run

3、war包方式启动
	1)在pom.xml中将打包形式 jar 修改为war  war

	构建项目名称 xdclass_springboot

	2)tocmat下载 https://tomcat.apache.org/download-90.cgi
	
	3)修改启动类
		public class XdclassApplication extends SpringBootServletInitializer {

		    @Override
		    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
		        return application.sources(XdclassApplication.class);
		    }

		    public static void main(String[] args) throws Exception {
		        SpringApplication.run(XdclassApplication.class, args);
		    }

		}

	4)打包项目,启动tomcat
注意事项
  • 在tomcat中访问项目默认要加上当前项目所在文件夹的名字,例如:
  • springboot打包成war包步骤以及注意事项_第1张图片
  • 访问路径为: http://localhost:8080/lhwclass_springboot/upload.html

此时需要在springboot的配置文件上配置项目的访问上下文:

#项目的相对目录
server.servlet.context-path=/lhwclass_springboot

这样前端在访问 http://localhost:8080/lhwclass_springboot/xxx.html的时候才不会报404.

相应的在前端访问接口的时候也要加上/lhwclass_springboot这个相对路径。

你可能感兴趣的:(springboot)