[SpringBoot - Web Development (using Thymeleaf template engine)]

A letter can only describe segment information, the specific reference code details]

https://github.com/HCJ-shadow/SpringBootPlus

1568622970099

Dependent on the introduction of POM

 <properties>
        <java.version>1.8</java.version>
        <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
        <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
</properties>
  <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

Remember not jump pit thymeleaf: https: //blog.csdn.net/qq_40754146/article/details/95411413


The html page put in classpath: template / down, thymeleaf can automatically rendering.

1568278442041

start up:

Note: If you have index.html file under static, the system will give priority access index.html under static.

1568278504902

Set the page jump Thymeleaf


Create a new controller

1568279494618


Create a thymeleaf.html in templates

1568279520276


Visit: http: // localhost: 8080 / thymeleaf

1568279447464

Thymeleaf CRUD test

Basic environment ready:

- the introduction of database-related pom-dependent

  <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.0</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>

- the introduction of Bootstrap dependent

 <!--引入bootstrap-->
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>bootstrap</artifactId>
            <version>4.0.0</version>
        </dependency>
        
        
  页面引用:
   <link  th:href="@{/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">

- the introduction of plug-pageshelper

 <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.5</version>
        </dependency>

Configuration yaml

pagehelper:
  helperDialect: mysql
  reasonable: true
  supportMethodsArguments: true
  pageSizeZero: false #pageSize=0

1. Create a database table

1568294907692

2. Create bean adaptive data table

1568295098039

package zkkrun.top.web.bean;

import java.io.Serializable;

public class UserInfo implements Serializable {

    private Integer id;
    private String username;
    private String password;
    private Integer age;
    private String email;

    public UserInfo() {
    }

    public UserInfo(Integer id, String username, String password, Integer age, String email) {
        this.id = id;
        this.username = username;
        this.password = password;
        this.age = age;
        this.email = email;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    @Override
    public String toString() {
        return "UserInfo{" +
                "id=" + id +
                ", username='" + username + '\'' +
                ", password='" + password + '\'' +
                ", age=" + age +
                ", email='" + email + '\'' +
                '}';
    }
}

3.yaml configuration data source

spring:
  datasource:
    #   数据源基本配置
    username: noneplus1
    password: Noneplus564925080!1
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://47.113.6.247:3306/user?serverTimezone=UTC

4. Create Mapper interface using annotations version Mybatis

package zkrun.top.web.mapper;

import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
import org.springframework.stereotype.Repository;
import zkrun.top.web.bean.UserInfo;

@Repository
public interface UserInfoMapper {

    @Select("SELECT * FROM user_info WHERE id = #{id}")
    public UserInfo getUserById(Integer id);

    @Update("UPDATE user_info SET username=#{username},password=#{password},age=#{age},email=#{email} WHERE id=#{id}")
    public void updateUser(UserInfo userInfo);

    @Delete("DELETE FROM user_info WHERE id=#{id}")
    public void deleteUserById(Integer id);

    @Insert("INSERT INTO user_info(username,password,age,email) VALUES(#{username},#{password},#{age},#{email})")
    public void insertUser(UserInfo userInfo);

}

Use MapperScan scanning interfaces where packet mapper

@MapperScan("zkrun.top.web.mapper")

5. Test database

Bulk insert data

package zkrun.top.web;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import zkrun.top.web.bean.UserInfo;
import zkrun.top.web.mapper.UserInfoMapper;

import java.util.UUID;

@RunWith(SpringRunner.class)
@SpringBootTest
public class WebApplicationTests {

    @Autowired
    UserInfoMapper userInfoMapper;
    @Test
    public void contextLoads() {

        UserInfo userInfo = userInfoMapper.getUserById(1);
        System.out.println(userInfo);

    }

    @Test
    public void insertDatas() {

        for(int i =0;i<1000;i++)
        {
            UserInfo userInfo = new UserInfo(i+2,UUID.randomUUID().toString().substring(0,8),"123456789",(Integer) (i+50)/3,"@sina.com");
            userInfoMapper.insertUser(userInfo);
        }
        System.out.println("插入成功!");

    }

}

1568297909179

Displays a list of

Cancel thymeleaf Cache

spring:
  thymeleaf:
    cache: false

ctrl + shift + F9 Refresh

1.UserInfoMapper increase SQL queries, get all the information

1568363383334

@Select("SELECT * FROM user_info")
    public List<UserInfo> getUsers();

2. Create CRUDController, using plug-page PageHelper

1568363460490

@Controller
public class CRUDController {

    @Autowired
    UserInfoMapper userInfoMapper;

    @RequestMapping("/crud")
    public String crud(@RequestParam(defaultValue = "1") int pageNum,
                       @RequestParam(defaultValue = "10") int pageSize,
                       Model model)
    {
        //默认查询所有信息
        PageHelper.startPage(pageNum,pageSize);
        PageInfo<UserInfo> pageInfo = new PageInfo<UserInfo>(userInfoMapper.getUsers());
        model.addAttribute("pageInfo",pageInfo);
        return "crud";
    }


}
  • pageNum, pageSize start page and the amount of data per page by the default parameter value to @RequestParam 1 and 10, conveniently disposed next and previous jump.
  • PageHelper.startPage (pageNum, pageSize); and the amount of data per page to start page
  • PageInfo pageInfo = new PageInfo (UserInfoMapper.getUsers ()); the queried data objects assigned pageInfo
  • model.addAttribute ( "pageInfo", pageInfo); PageInfo transferred into the page

3.Thymeleaf expression through adaptive data

<table class="table">
    <tr>
        <th>id</th>
        <th>username</th>
        <th>password</th>
        <th>age</th>
        <th>email</th>
    </tr>
    <tr th:each="user:${pageInfo.list}">
        <td th:text="${user.id}"></td>
        <td th:text="${user.username}"></td>
        <td th:text="${user.password}"></td>
        <td th:text="${user.age}"></td>
        <td th:text="${user.email}"></td>
    </tr>
</table>

<ul class="pagination" style="margin-left: 50%">
    <li class="page-item"><a class="page-link"><span th:text="第+${pageInfo.pageNum}+页"></span></a></li>
    <li class="page-item"><a class="page-link" th:href="@{/crud}">首页</a></li>
    <li class="page-item"><a class="page-link" th:href="@{/crud(pageNum=${pageInfo.pages})}">尾页</a></li>
    <li class="page-item"><a class="page-link" th:href="@{/crud(pageNum=${pageInfo.prePage})}">Last</a></li>
    <li class="page-item"><a class="page-link" th:href="@{/crud(pageNum=${pageInfo.getNextPage()})}">Next</a></li>
</ul>

Visit http: // localhost: 8080 / crud

1568364289542

delete message

Controller

//删除
    @RequestMapping("/delete")
    public String delete(int id) {
        userInfoMapper.deleteUserById(id);
        return "redirect:/user";
    }

UserInfoMapper

 @Delete("DELETE FROM user_info WHERE id=#{id}")
    public void deleteUserById(Integer id);

Add a button to the page

   <button type="button" class="btn btn-danger"><a style="color: aliceblue" th:href="@{/delete(id=${user.id})}">删除</a></button>

Modify and add information

Jump to amend or add to the page, and then submit the form

modify

//点击修改按钮,跳转到修改页面,回显信息
    @RequestMapping("/modify")
    public String modify(int id ,Model model) {
        model.addAttribute("OneInfo",userInfoMapper.getUserById(id));
        return "modify";
    }

    //提交修改信息
    @RequestMapping("/modifyCommit")
    public String modify(UserInfo userInfo) {
        System.out.println(userInfo);
        userInfoMapper.updateUser(userInfo);
        System.out.println("修改提交.");
        return "redirect:/user";
    }

Home Add a Modify button

 <button type="button" class="btn btn-primary"><a style="color: aliceblue" th:href="@{/modify(id=${user.id})}">修改</a></button>

In response to the first request, a page jump to modify

modify page

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>modify</title>
    <link  th:href="@{/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">
</head>
<body>
<div style="width: 50%;margin-left: 25%;margin-top: 5%">
    <h1>修改</h1>
    <form class="form-horizontal" th:action="@{/modifyCommit}">
        <input name="id" class="form-control"  th:value="${OneInfo.getId()}" style="display: none">
        <div class="form-group">
            <label  class="col-sm-2 control-label">Username</label>
            <div class="col-sm-10">
                <input name="username" class="form-control" id="Username" placeholder="Username" th:value="${OneInfo.getUsername()}">
            </div>
        </div>
        <div class="form-group">
            <label  class="col-sm-2 control-label">Password</label>
            <div class="col-sm-10">
                <input name="password" class="form-control" id="inputPassword3" placeholder="Password" th:value="${OneInfo.getPassword()}">
            </div>
        </div>
        <div class="form-group">
            <label  class="col-sm-2 control-label">age</label>
            <div class="col-sm-10">
                <input name="age" class="form-control" id="age" placeholder="Age" th:value="${OneInfo.getAge()}">
            </div>
        </div>
        <div class="form-group">
            <label  class="col-sm-2 control-label">Email</label>
            <div class="col-sm-10">
                <input name="email" class="form-control" id="inputEmail3" placeholder="Email" th:value="${OneInfo.getEmail()}">
            </div>
        </div>
        <div class="form-group">
            <div class="col-sm-offset-2 col-sm-10">
                <button type="submit" class="btn btn-primary">提交</button>
            </div>
        </div>
    </form>
</div>
</body>
</html>

which modify the action table of action table submitted response modification

Add to

Similarly, go to the Add page, then submit the form

controller

    //添加:1.跳转到添加页面
    @RequestMapping("/add1")
    public String add1() {
        return "add";
    }

    //添加 : 2.提交信息
    @RequestMapping("/add2")
    public String add2(UserInfo userInfo) {
        System.out.println(userInfo);
        userInfoMapper.insertUser(userInfo);
        return "redirect:/user";
    }

Add a button

<button style="margin-left: 75%" type="button" class="btn btn-primary"><a style="color: aliceblue" th:href="@{/add1}">新增</a></button>

Add Page (page does not need to modify the contrast echo)

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>add</title>
    <link  th:href="@{/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">
</head>
<body>
<div style="width: 50%;margin-left: 25%;margin-top: 5%">
<h1>添加</h1>
<form class="form-horizontal" th:action="@{/add2}">
    <div class="form-group">
        <label  class="col-sm-2 control-label">Username</label>
        <div class="col-sm-10">
            <input name="username" class="form-control" id="Username" placeholder="Username">
        </div>
    </div>
    <div class="form-group">
        <label  class="col-sm-2 control-label">Password</label>
        <div class="col-sm-10">
            <input name="password" class="form-control" id="inputPassword3" placeholder="Password">
        </div>
    </div>
    <div class="form-group">
        <label  class="col-sm-2 control-label">age</label>
        <div class="col-sm-10">
            <input name="age" class="form-control" id="age" placeholder="Age">
        </div>
    </div>
    <div class="form-group">
        <label  class="col-sm-2 control-label">Email</label>
        <div class="col-sm-10">
            <input name="email" class="form-control" id="inputEmail3" placeholder="Email">
        </div>
    </div>
    <div class="form-group">
        <div class="col-sm-offset-2 col-sm-10">
            <button type="submit" class="btn btn-primary">提交</button>
        </div>
    </div>
</form>
</div>
</body>
</html>

test

Insert the test data 500

 @Test
    public void insertDatas() {

        System.out.println("开始插入...");

        for(int i =1;i<500;i++)
        {
            UserInfo userInfo = new UserInfo(i,UUID.randomUUID().toString().substring(0,8),"123456789",(Integer) (i+50)/3,"@sina.com");
            userInfoMapper.insertUser(userInfo);
        }
        System.out.println("插入成功!");

    }

1568622618710

1568622635243

Displays a list of

1568622681593

modify

1568622720898

1568622745911

Add to

1568622797540

1568622789735

Guess you like

Origin www.cnblogs.com/noneplus/p/11528129.html