springboot+gradle搭建web服务器——项目创建

一、项目创建

打开ideal intelij

springboot+gradle搭建web服务器——项目创建_第1张图片

编辑包名选择gradle

springboot+gradle搭建web服务器——项目创建_第2张图片

选择集成内容SpringWeb

springboot+gradle搭建web服务器——项目创建_第3张图片

填写项目名称

springboot+gradle搭建web服务器——项目创建_第4张图片

二、项目配置

1、引进html解析包

build.gradle文件下:

implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
    testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    }
    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
}

2、端口配置

默认端口维8080,不修改可以直接使用,如果要自定义端口,resources/application.properties文件中修改。

server.port=8888

springboot+gradle搭建web服务器——项目创建_第5张图片

三、项目运行

springboot+gradle搭建web服务器——项目创建_第6张图片

运行效果如上,浏览器输入http://localhost:8888/,效果如下:

springboot+gradle搭建web服务器——项目创建_第7张图片

则说明项目已经运行成功。

 

 

你可能感兴趣的:(java后端技术,SpringBoot,项目创建)