【springboot系列】创建springboot项目

springboot系列一:创建Springboot项目

文章目录

  • springboot系列一:创建Springboot项目
    • 2、接入springboot依赖
    • 3. 修改包结构、创建MainApplication入口
    • 4. 写一个Controller返回一个Thymeleaf页面
    • 6. 源码献上

## 1. 创建Maven项目
创建空项目如下:
【springboot系列】创建springboot项目_第1张图片
【springboot系列】创建springboot项目_第2张图片项目结构如下图:
【springboot系列】创建springboot项目_第3张图片

2、接入springboot依赖

添加parent依赖


  <parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>2.1.4.RELEASEversion>
    <relativePath/> 
  parent>
  

添加springboot的web依赖及thymeleaf依赖:


    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-webartifactId>
    dependency>
    
    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-thymeleafartifactId>
    dependency>

3. 修改包结构、创建MainApplication入口

【springboot系列】创建springboot项目_第4张图片

4. 写一个Controller返回一个Thymeleaf页面

目录结构如下:
【springboot系列】创建springboot项目_第5张图片
配置文件如下:
application.properties:

server.port=8096
#thymeleaf
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html

Controller如下:

@Controller
@RequestMapping("/demo")
public class SampleController {
    @RequestMapping("/thymeleaf")
    public String thymeleaf(Model model){
        model.addAttribute("name","haibo");
        return "hello";
    }
}

html如下:


<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
head>
<body>
<p th:text="'hello:'+${name}">p>
body>
html>

访问http://localhost:8096/demo/thymeleaf 结果如下:
【springboot系列】创建springboot项目_第6张图片

6. 源码献上

github项目代码自取

你可能感兴趣的:(springboot)