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

  •  创建一个maven项目
  • 导入springboot依赖,注意底下注释部分


    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
            
        
    

idea使用外置tomcat配置springboot详细步骤_第1张图片

idea使用外置tomcat配置springboot详细步骤_第2张图片

完成下图操作保存即可

idea使用外置tomcat配置springboot详细步骤_第3张图片

配置tomcat启动项

idea使用外置tomcat配置springboot详细步骤_第4张图片

idea使用外置tomcat配置springboot详细步骤_第5张图片

idea使用外置tomcat配置springboot详细步骤_第6张图片

idea使用外置tomcat配置springboot详细步骤_第7张图片

配置视图解析器

idea使用外置tomcat配置springboot详细步骤_第8张图片

创建一个springboot主程序

@SpringBootApplication
public class SpringBootMain {
    public static void main(String[] args) {
        SpringApplication.run(SpringBootMain.class,args);
    }
}

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

public class ServletInitializer extends SpringBootServletInitializer {
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        //传入SpringBoot的主程序,
        return application.sources(SpringBootMain.class);
    }
}

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

idea使用外置tomcat配置springboot详细步骤_第9张图片

到此这篇关于idea配置springboot使用外置tomcat详细步骤的文章就介绍到这了,更多相关idea配置springboot内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(idea使用外置tomcat配置springboot详细步骤)