springboot daily essays -1

Does not create the item, please click

Today began daily update springboot series (rookie I welcome the god of Ariadne).

- src
    -main
        -java
            -package
                #主函数,启动类,运行它如果运行了 Tomcat、Jetty、Undertow 等容器
                -SpringbootApplication	
        -resouces
            #存放静态资源 js/css/images 等
            - statics
            #存放 html 模板文件
            - templates
            #主要的配置文件,SpringBoot启动时候会自动加载application.yml/application.properties		
            - application.yml
    #测试文件存放目录		
    -test
 # pom.xml 文件是Maven构建的基础,里面包含了我们所依赖JAR和Plugin的信息
- pom

table of Contents
Start Class
Here Insert Picture Description
Here Insert Picture Description
configure the port number
Here Insert Picture Description
Here Insert Picture Description

Guess you like

Origin blog.csdn.net/qq_35226176/article/details/92801747