IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> springboot+mybatis-plus+thymeleaf实现增删改查 -> 正文阅读

[Java知识库]springboot+mybatis-plus+thymeleaf实现增删改查

1,新建项目。

2,配置数据库、整合mybatis-plus、逆向工程详见mybatis-plus。resources->

3,thymeleaf。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

在application.yml中配置thymeleaf

spring:
? thymeleaf:
? ? enabled: true ?#开启thymeleaf视图解析
? ? encoding: utf-8 ?#编码
? ? prefix: classpath:/templates/ ?#前缀
? ? cache: false ?#是否使用缓存
? ? mode: HTML ?#严格的HTML语法模式
? ? suffix: .html ?#后缀名

全部的配置为:

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/test?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai
    username: root
    password: 123456
  thymeleaf:
    enabled: true  #开启thymeleaf视图解析
    encoding: utf-8  #编码
    prefix: classpath:/templates/  #前缀
    cache: false  #是否使用缓存
    mode: HTML  #严格的HTML语法模式
    suffix: .html  #后缀名
mybatis-plus:
  mapper-locations: classpath*:/mapper/**Mapper.xml

在resource下新建templates包并在该目录下新建index.html文件

在controller中新建TestController

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class ThymeleafTestController {
    @ResponseBody
    @RequestMapping("/getIndex")
    public String getIndex() {
        return "index";
    }

    @RequestMapping("/getIndex2")
    public String getIndex2() {
        return "index";
    }
}

注意:在类上不能使用@RestController注解,否则获取不到html页面,只能返回字符串。

所以用的@Controller。而在用@Controller的情况下,方法中如果要返回字符串,就加@ResponseBody注解。

RestController的作用相当于Controller加ResponseBody共同作用的结果,但采用RestController请求方式一般会采用Restful风格的形式。

相关html页面和controller。

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<span th:text="${msg}"></span>
<!--显示所有-->
<table align="center" border="1px" cellspacing="0" cellpadding="10px">
    <thead>
    <tr>
        <th>姓名</th>
        <th>密码</th>
        <th>年龄</th>
        <th>职业</th>
    </tr>
    </thead>
    <tbody>
    <tr th:each="user:${userList}">
        <td th:text="${user.name}"></td>
        <td th:text="${user.password}"></td>
        <td th:text="${user.age}"></td>
        <td th:text="${user.job}"></td>
    </tr>
    </tbody>
</table>
<div>增</div>
<div>删</div>
<div>改</div>
<div>查</div>






</body>
</html>

package com.example.mybatisplus.controller;

import com.example.mybatisplus.entity.Userdemo;
import com.example.mybatisplus.service.IUserdemoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.HashMap;
import java.util.List;

@Controller
public class ThymeleafTestController {

    @Autowired
    IUserdemoService iUserdemoService;

    @ResponseBody
    @RequestMapping("/getIndex1")
    public String getIndex1() {
        return "index";
    }

    @RequestMapping("/getIndex2")
    public String getIndex2() {
        return "index";
    }
    @RequestMapping("/getIndex")
    //返回数据有多种方式,以下只是其中一种
    public String getIndex(Model model) {
        model.addAttribute("msg" , "Hello Thymeleaf");
//        查询所有
        List<Userdemo> list = iUserdemoService.list();
        model.addAttribute("userList",list);
        return "index";
    }
}
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-10-22 21:01:38  更:2022-10-22 21:05:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/30 13:18:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码