一、项目创建
打开ideal intelij
编辑包名选择gradle
选择集成内容SpringWeb
填写项目名称
二、项目配置
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
三、项目运行
运行效果如上,浏览器输入http://localhost:8888/,效果如下:
则说明项目已经运行成功。