我是靠谱客的博主 甜蜜人生,最近开发中收集的这篇文章主要介绍springboot+gradle搭建web服务器——项目创建,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、项目创建

打开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/,效果如下:

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

 

 

最后

以上就是甜蜜人生为你收集整理的springboot+gradle搭建web服务器——项目创建的全部内容,希望文章能够帮你解决springboot+gradle搭建web服务器——项目创建所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部