SpringBoot三种启动方式

SpringBoot为Gradle和Maven提供了构建插件,以便辅助构建SpringBoot项目,如果选用Maven来构建应用程序,Initializr会替你生成一个pom.xml文件,其中使用了SpringBoot的Maven插件,



    4.0.0

    com.ge
    thesis
    0.0.1-SNAPSHOT
    jar

    thesis
    Demo project for Spring Boot


    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.4.RELEASE
         
    

    
        UTF-8
        UTF-8
        1.8
    


    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    



通过Maven启动方法:spring-boot:run

当通过Gradle启动项目时道理是相同的,第三种方法 通过IDE启动,这里是IDEA举例

SpringBoot三种启动方式_第1张图片

这里的ThesisApplication是整个项目的启动类,

SpringBoot三种启动方式_第2张图片

点击图中的绿色图标即可启动该项目,

SpringBoot三种启动方式_第3张图片

或者点击图示处按钮,从左到右分别表示以run模式运行项目,以debug模式运行项目。

你可能感兴趣的:(SpringBoot)