学习搭建SpringBoot框架
程序员文章站
2022-04-03 08:52:10
...
学习创建SpringBoot项目
今天学习了如何创建SpringBoot项目。
首先在New Project中选择Spring Initializar,选择sdk,其余用默认配置,点击下一步:
为项目取名字,java Version改为8,点击下一步:
添加依赖组件:Spring Web、Mysql Driver、Spring Data JPA以及模板引擎Thymeleaf:
点击Finish完成创建:
进入项目后界面后,配置maven:
添加依赖:导入完成
修改mysql版本为当前电脑上mysql的版本,点击刷新,更新依赖:
修改application.properties为application.yml,写配置内容:
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/news?useSSL=false&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
username: root
password:
thymeleaf:
mode: HTML
profiles:
active: dev
在template下新建first.html文件:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>第一页</title>
</head>
<body>
欢迎!
</body>
</html>
在com.zr0726.news包下新建dao、po、service、web包,在service下创建impl包
web包下创建IndexController类:
package com.zr0726.news.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class indexController {
@GetMapping("/")
public String index(){
return "first";
}
}
运行项目:
在浏览器打开localhost的8080端口:
说明项目创建成功,接下来需要新建数据库,为之后的学习与项目做准备。
上一篇: 1.Java数组的定义与使用
下一篇: 面试题 01.01. 判定字符是否唯一
推荐阅读