springboot+mybatis+Thymeleaf

来源:https://www.cnblogs.com/tysl/archive/2019/05/11/10849914.html
-Advertisement-
Play Games

1.項目結構 2.代碼展示 1.pom.xml 2.application.properties 3.實體類test 4.mapper層(介面和映射文件) 介面 映射文件 5.業務層 介面(TestService) 實現類(TestServiceImpl) 6.表示層(controller) 7.啟 ...


1.項目結構

2.代碼展示

 1.pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.bl</groupId>
    <artifactId>test</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>test</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.0.1</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
            <version>5.1.47</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>

    </build>

</project>

 2.application.properties

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/aaa
spring.datasource.username=root
spring.datasource.password=aaa

spring.thymeleaf.cache=false

3.實體類test 

package com.bl.test.pojo;

public class Test {
    private int id;
    private int y;
    private int w;

    public int getId() {
        return id;
    }

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

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }

    public int getW() {
        return w;
    }

    public void setW(int w) {
        this.w = w;
    }
}

 4.mapper層(介面和映射文件)

 介面

package com.bl.test.mapper;

import com.bl.test.pojo.Test;
import org.apache.ibatis.annotations.Mapper;

import java.util.List;
@Mapper
public interface TestMapper {
    public List<Test> queryAll();
    public Test queryOne(int id);
    public void update(Test test);
    public void delete(int id);
    public void add(Test test);

}

映射文件

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.bl.test.mapper.TestMapper">

    <resultMap id="BaseResultMap" type="com.bl.test.pojo.Test">
        <id column="id" jdbcType="INTEGER" property="id" />
        <result column="y" jdbcType="INTEGER" property="y" />
        <result column="w" jdbcType="INTEGER" property="w" />
    </resultMap>
    <select id="queryAll" resultMap="BaseResultMap">
        select * from test
    </select>
    <select id="queryOne" resultMap="BaseResultMap">
        select * from test where id=#{id}
    </select>
    <update id="update">
        update test set y=#{y},w=#{w} where id=#{id}
    </update>
    <insert id="add">
        insert into test values(null,#{y},#{w})
    </insert>
    <delete id="delete">
        delete from test where id=#{id}
    </delete>

</mapper>

5.業務層

介面(TestService)

package com.bl.test.service;

import com.bl.test.pojo.Test;

import java.util.List;

public interface TestService {
    public List<Test> selectAll();
    public Test queryOne(int id);
    public void update(Test t);
    public void delete(int id);
    public void add(Test t);
}

實現類(TestServiceImpl)

package com.bl.test.service.impl;

import com.bl.test.mapper.TestMapper;
import com.bl.test.pojo.Test;
import com.bl.test.service.TestService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class TestServiceImpl implements TestService {
    @Autowired
    private TestMapper testMapper;

    @Override
    public List<Test> selectAll() {
        return testMapper.queryAll();
    }

    @Override
    public Test queryOne(int id) {
        return testMapper.queryOne(id);
    }

    @Override
    public void update(Test t) {
        testMapper.update(t);
    }

    @Override
    public void delete(int id) {
        testMapper.delete(id);
    }

    @Override
    public void add(Test t) {
        testMapper.add(t);
    }
}

6.表示層(controller)

package com.bl.test.controller;

import com.bl.test.pojo.Test;
import com.bl.test.service.TestService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@Controller
public class TestController {
    @Autowired
    private TestService testService;
    @RequestMapping("/test/queryAll")
    public String queryAll(Model model){
        List<Test> list=testService.selectAll();
        model.addAttribute("list",list);
        return "test";
    }

    @RequestMapping("/test/queryOne")
    public String queryOne(Model model,int id){
        Test t=testService.queryOne(id);
        model.addAttribute("test",t);
        return "testOne";
    }

    @RequestMapping("/test/update")
    public String update(Test test){

        testService.update(test);
        return "redirect:/test/queryAll";
    }

    @RequestMapping("/test/add")
    public String add(Test test){
        testService.add(test);
        return "redirect:/test/queryAll";
    }

    @RequestMapping("/test/delete")
    public String delete(int id){
        testService.delete(id);
        return "redirect:/test/queryAll";
    }

    @RequestMapping("{test}")
    public String test(@PathVariable("test") String test){
        return test;
    }
}

7.啟動類

package com.bl.test;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TestApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestApplication.class, args);
    }

}

8.前端

1.顯示全部

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <table border="1" cellpadding="0">
        <tr>
            <th>編號</th>
            <th>y</th>
            <th>w</th>
            <th>操作</th>
        </tr>
        <tr th:each="list : ${list}">
            <td th:text="${list.id}"></td>
            <td th:text="${list.y}"></td>
            <td th:text="${list.w}"></td>
            <td>
                <a th:href="@{/test/queryOne(id=${list.id})}">修改</a>
                <a th:href="@{/test/delete(id=${list.id})}">刪除</a>
            </td>
        </tr>
        <tr>
           <td colspan="4">
              <a th:href="@{/testAdd}">添加</a>
           </td>
        </tr>
    </table>
</body>
    <script>
        function a(id){
            alert(id);
        }
    </script>
</html>

2.添加

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>添加</title>
</head>
<body>
    <form th:action="@{/test/add}">
        <table border="1" cellpadding="0">
            <tr>
                <th>y</th>
                <th>w</th>
                <th>操作</th>
            </tr>
            <tr >
                <td><input name="y" /></td>
                <td><input name="w"/></td>
                <td><input type="submit" value="提交" /> ></td>
            </tr>
        </table>
    </form>


</body>
    <script>
        function a(id){
            alert(id);
        }
    </script>
</html>

3.修改

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>修改</title>
</head>
<body>
    <form th:action="@{/test/update}">
        <table border="1" cellpadding="0">
            <tr>
                <th>編號</th>
                <th>y</th>
                <th>w</th>
                <th>操作</th>
            </tr>
            <tr >
                <td>
                    <input name="id" readonly th:value="${test.id}" />
                </td>
                <td><input name="y" th:value="${test.y}" /></td>
                <td><input name="w" th:value="${test.w}" /></td>
                <td><input type="submit" value="提交" /> ></td>
            </tr>
        </table>
    </form>


</body>
    <script>
        function a(id){
            alert(id);
        }
    </script>
</html>

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 題目: Given two binary trees, write a function to check if they are the same or not. Two binary trees are considered the same if they are structurally i ...
  • 最近看到別人用tkinter寫交互的小軟體,很羡慕,所以我試著用tkinter來寫一個you-get的下載頁面。新手 ,請多多指教…… ...
  • <div id="cnblogs_post_body" class="blogpost-body"><h3><strong>什麼是robots.txt?</strong></h3><p>robots.txt是一個純文本文件,是爬蟲抓取網站的時候要查看的第一個文件,一般位於網站的根目錄下。robots ...
  • 題目:https://www.luogu.org/problemnew/show/P1012 今天真是長了見識。這道題做了十幾分鐘,用模擬愣是調不出來。直到我看了題解——(當場去世)…… 題的意思是n個數拼出一個最大的數,我竟真的傻傻的輸進n個數。。。。。 用string 輕鬆解決!!! 用sort ...
  • 對於phper來說部署項目和更新項目是很方便的,只要直接將寫好的項目覆蓋到項目的根目錄就可以啦。但是平時項目開發的時候肯定不是只部署一個環境,一般是三套環境(開發環境、測試環境、生產環境),我們每次在開發環境開發完之後要將項目更新到測試環境和生產環境上,如果每次更新的話都是將項目複製然後手動的去覆蓋 ...
  • 簡介: Debenu Quick PDF Library(PDF編程開發工具)提供一套全方位的 PDF API 函數,幫助您快速簡便地處理 PDF 文件。從文檔屬性的基本操作到創建您自己的 PDF 查看器和 PDF 編輯器,這款軟體滿足您的所有需求。Quick PDF Library是一款供 PDF ...
  • 前段時間沒有好好準備,錯過了“金三銀四”,因此最近開始惡補各方面知識,決定先從JVM記憶體結構和GC開始。 JVM記憶體結構分為如下幾部分(前兩項為線程共用,後三項為線程私有的): 1、方法區:存儲已經被虛擬機載入的類信息、常量、JIT(及時編譯器Just In Time)編譯後的代碼以及類變數(sta ...
  • 1. 多進程與多線程 (1)背景:為何需要多進程或者多線程:在同一時間里,同一個電腦系統中如果允許兩個或者兩個以上的進程處於運行狀態,這便是多任務。多任務會帶來的好處例如用戶邊聽歌、邊上網、邊列印,而這些任務之間絲毫不會互相干擾。使用多進程技術,可大大提高電腦的運算速率。 (2)多進程與多線程的 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...