idea使用外置tomcat配置springboot详细步骤

网友投稿 264 2022-12-30

idea使用外置tomcat配置springboot详细步骤

创建一个maven项目

导入springboot依赖,注意底下注释部分

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

com.znsd.springboot

springboot-jsp

1.0-SNAPSHOT

war

org.springframework.boot

spring-boot-starter-parent

2.3.12.RELEASE

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-tomcat

provided

org.springframework.boot

spring-boot-starter-test

test

org.junit.vintage

junit-vintage-engine

org.springframework.boot

spring-boot-maven-plugin

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

com.znsd.springboot

springboot-jsp

1.0-SNAPSHOT

war

org.springframework.boot

spring-boot-starter-parent

2.3.12.RELEASE

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-tomcat

provided

org.springframework.boot

spring-boot-starter-test

test

org.junit.vintage

junit-vintage-engine

org.springframework.boot

spring-boot-maven-plugin

完成下图操作保存即可

配置tomcat启动项

配置视图解析器

创建一个springboot主程序

@SpringBootApplication

public class SpringBootMain {

public static void main(String[] args) {

SpringApplication.run(SpringBootMain.clahttp://ss,args);

}

}

必须编写一个SpringBootServletInitializer的子类,并调用configure方法里面的固定写法

public class ServletInitializer extends SpringBootServletInitializer {

@Override

protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {

//传入SpringBoot的主程序,

return application.sources(SpringBootMain.class);

}

}

然后启动tomcat,控制台输出了spring就启动成功了

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:网站备案查询api接口(API接口查询)
下一篇:Java提效神器Stream的一些冷门技巧汇总
相关文章

 发表评论

暂时没有评论,来抢沙发吧~