建立学习的第一站吧,从头开始。欢迎大家跟我一起学习~ 这里也是为了记录自己的学习之路!——by xln
1. 打开IDEA创建项目,选择Spring Initializr(Spring初始化工具),使用这个工具可以直接创建SpringBoot项目。
2. 更改了Group名称(域名的倒序排列)
3. 先选择最基础的Web,后面需要的手动导入
4. 进入项目后,等待项目加载完毕
5. 在pom.xml里面引入thymeleaf依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
6. 创建controller,写一个控制器java类
package study.xln.community.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
//@Controller自动扫描识别控制器,允许这个类接收前端请求
@Controller
public class HelloController {
//@GetMapping注释确保Http get请求到/hello, 然后被映射到hello()方法
@GetMapping("/hello")
//@RequestParam将查询字符串参数的值绑定name到hello()方法的name参数中
//@RequestParam(快捷键Ctrl+P)
public String hello(@RequestParam(name = "name") String name, Model model){
model.addAttribute("name",name);
//自动去找hello这个模板,在templates里面
return "hello";
}
}
7. 创建hello模板页面
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'Hello, ' + ${name} + '!'" />
</body>
</html>
8. 在网站输入地址:http://localhost:8080/hello?name=xln
一个简单的SpringBoot项目就初步搭建成功啦~