SpringBoot整合MyBatis實(shí)現(xiàn)CRUD操作項(xiàng)目實(shí)踐
SpringBoot整合MyBatis項(xiàng)目進(jìn)行CRUD操作項(xiàng)目示例
1.1.需求分析
通過使用 SpringBoot+MyBatis整合實(shí)現(xiàn)一個(gè)對數(shù)據(jù)庫中的 users 表的 CRUD
1.2.創(chuàng)建工程
04_springboot_mybatis
1.3.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.3.2.RELEASE</version>
</parent>
<groupId>com.by</groupId>
<artifactId>04_springboot_mybatis</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!-- springBoot 的啟動(dòng)器 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Mybatis 啟動(dòng)器 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.0.1</version>
</dependency>
<!-- mysql 數(shù)據(jù)庫驅(qū)動(dòng) -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.38</version>
</dependency>
<!-- druid 數(shù)據(jù)庫連接池 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.0.9</version>
</dependency>
<!-- 添加 junit 環(huán)境的 jar 包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
</dependency>
</dependencies>
</project>
1.4.application.properties
spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/springboot spring.datasource.username=root spring.datasource.password=1111 spring.datasource.type=com.alibaba.druid.pool.DruidDataSource mybatis.type-aliases-package=com.by.pojo logging.level.com.by.mapper=DEBUG
1.5.啟動(dòng)類
@SpringBootApplication
@MapperScan("com.by.mapper") // @MapperScan 用戶掃描MyBatis的Mapper接口
public class App {
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
}
2.添加用戶
2.1.數(shù)據(jù)表設(shè)計(jì)
CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nam` varchar(255) DEFAULT NULL, `sex` int(11) DEFAULT NULL, `pwd` varchar(255) DEFAULT NULL, `birth` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
2.2.pojo
public class User {
private Integer id;
private String nam;
private String pwd;
private Integer sex;
private Date birth;
}
2.3.mapper
public interface UserMapper {
public void insertUser(User user);
}
<?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.by.mapper.UserMapper">
<insert id="insertUser" parameterType="user">
insert into user(nam,pwd,sex,birth) values(#{nam},#{pwd},#{sex},#{birth})
</insert>
</mapper>
2.4.service
@Service
@Transactional
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
@Override
public void addUser(User user) {
this.userMapper.insertUser(user);
}
}
2.5.junit
/**
* main方法:
* ApplicationContext ac=new
* ClassPathXmlApplicationContext("classpath:applicationContext.xml");
* junit與spring整合:
* @RunWith(SpringJUnit4ClassRunner.class):讓junit與spring環(huán)境進(jìn)行整合
* @Contextconfiguartion("classpath:applicationContext.xml")
* junit與SpringBoot整合:
* @RunWith(SpringJUnit4ClassRunner.class):讓junit與spring環(huán)境進(jìn)行整合
* @SpringBootTest(classes={App.class}):加載SpringBoot啟動(dòng)類。啟動(dòng)springBoot
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes={App.class})
public class UserServiceTest {
@Autowired
private UserService userService;
@Test
public void testAddUser(){
User user = new User();
user.setId(1);
user.setNam("二狗");
user.setPwd("111");
user.setSex(1);
user.setBirth(new Date());
this.userService.addUser(user);
}
}
2.6.controller
@Controller
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
/**
* 頁面跳轉(zhuǎn)
*/
@RequestMapping("/{page}")
public String showPage(@PathVariable String page) {
return page;
}
/**
* 添加用戶
*/
@RequestMapping("/addUser")
public String addUser(User user) {
this.userService.addUser(user);
return "ok";
}
}
2.7.thymeleaf
add.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>添加用戶</title>
</head>
<body>
<h3>新增用戶</h3>
<hr/>
<form th:action="@{/user/addUser}" method="post">
姓名:<input type="text" name="nam"/><br/>
密碼:<input type="text" name="pwd"/><br/>
性別:<input type="radio" name="sex" value="1"/>女
<input type="radio" name="sex" value="0"/>男<br/>
生日:<input type="text" name="birth"/><br/>
<input type="submit" value="確定"/><br/>
</form>
</body>
</html>
2.8.測試

3.查詢用戶
3.1.mapper
public List<User> listUser();
<select id="listUser" resultType="user"> select * from user </select>
3.2.service
@Override
public List<User> listUser() {
return userMapper.listUser();
}
3.4.controller
/**
* 查詢?nèi)坑脩?
*/
@RequestMapping("/listUser")
public String listUser(Model model) {
List<User> list = this.userService.listUser();
model.addAttribute("list", list);
return "list";
}
3.5.thymeleaf
list.html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>首頁</title>
<style type="text/css">
table {border-collapse: collapse; font-size: 14px; width: 80%; margin: auto}
table, th, td {border: 1px solid darkslategray;padding: 10px}
</style>
</head>
<body>
<div style="text-align: center">
<span style="color: darkslategray; font-size: 30px">歡迎光臨!</span>
<hr/>
<table class="list">
<tr>
<th>id</th>
<th>姓名</th>
<th>密碼</th>
<th>性別</th>
<th>生日</th>
</tr>
<tr th:each="user : ${list}">
<td th:text="${user.id}"></td>
<td th:text="${user.nam}"></td>
<td th:text="${user.pwd}"></td>
<td th:text="${user.sex==1}?'男':'女'"></td>
<td th:text="${#dates.format(user.birth,'yyyy-MM-dd')}"></td>
</tr>
</table>
</div>
</body>
</html>
3.6.測試

4.用戶登錄
4.1.mapper
public Users login(User user);
<select id="login" parameterType="User" resultType="User">
select * from user where nam=#{nam} and pwd=#{pwd}
</select>
4.2.service
@Override
public Users login(User user) {
return userMapper.login(user);
}
4.4.controller
@RequestMapping("/login")
public String login(Model model, User user, HttpSession session) {
User loginUser = usersService.login(user);
if(user!=null){
session.setAttribute("loginUser", loginUser);
return "redirect:/user/listUser";
}
return "login";
}
添加PageController
@Controller
public class PageController {
@RequestMapping("/")
public String showLogin(){
return "login";
}
}
4.5.thymeleaf
login.html
<html>
<head>
<meta charset="UTF-8">
<title>注冊</title>
</head>
<body>
<center>
<h3>登錄</h3>
<hr/>
<form th:action="@{/user/login}" method="post">
賬號(hào):<input type="text" name="nam"/><br/>
密碼:<input type="text" name="pwd"/><br/>
<input type="submit" value="確定"/><br/>
</form>
</center>
</body>
</html>
4.6.測試

5.SpringBoot整合日期轉(zhuǎn)換器
5.1.添加日期轉(zhuǎn)換器
import java.text.ParseException;
import java.util.Date;
import org.springframework.core.convert.converter.Converter;
import org.apache.commons.lang3.time.DateUtils;
public class DateConverter implements Converter<String, Date>{
@Override
public Date convert(String str) {
String[] patterns = new String[]{
"yyyy-MM-dd","yyyy-MM-dd hh:mm:ss","yyyy/MM/dd","yyyy/MM/dd hh:mm:ss",
"MM-dd-yyyy","dd-MM-yyyy"};
try {
Date date = DateUtils.parseDate(str, patterns);
return date;
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}
}
5.2.配置日期轉(zhuǎn)換器
說明
WebMvcConfigurer配置類其實(shí)是
Spring內(nèi)部的一種配置方式,采用JavaBean的形式來代替?zhèn)鹘y(tǒng)的xml配置文件形式針對框架進(jìn)行個(gè)性化定制,例如:攔截器,類型轉(zhuǎn)化器等等。代碼示例
import com.by.converter.DateConverter; import org.springframework.context.annotation.Configuration; import org.springframework.format.FormatterRegistry; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Component public class MyConfig implements WebMvcConfigurer { @Override public void addFormatters(FormatterRegistry registry) { registry.addConverter(new DateConverter()); } }
6.SpringBoot整合攔截器
6.1.添加攔截器
package com.by.interceptor;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.by.pojo.Users;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
public class LoginInterceptor implements HandlerInterceptor{
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response,
Object handler)throws Exception {
Users user = (Users) request.getSession().getAttribute("user");
if(user!=null){
return true;
}
response.sendRedirect("/");
return false;
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response,
Object handler,ModelAndView modelAndView) throws Exception {
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response,
Object handler, Exception ex)throws Exception {
}
}
6.2.配置攔截器
修改MyConfig
//<mvc:interceptors>
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginInterceptor()).addPathPatterns("/emp/**");
}到此這篇關(guān)于SpringBoot整合MyBatis實(shí)現(xiàn)CRUD操作項(xiàng)目實(shí)踐的文章就介紹到這了,更多相關(guān)SpringBoot MyBatis CRUD操作內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- SpringBoot使用MyBatis實(shí)現(xiàn)數(shù)據(jù)的CRUD
- SpringBoot整合MyBatis Plus實(shí)現(xiàn)基本CRUD與高級(jí)功能
- SpringBoot之整合MyBatis實(shí)現(xiàn)CRUD方式
- SpringBoot整合Mybatis Plus實(shí)現(xiàn)基本CRUD的示例代碼
- springboot+mybatis-plus實(shí)現(xiàn)內(nèi)置的CRUD使用詳解
- SpringBoot+Mybatis+Vue 實(shí)現(xiàn)商品模塊的crud操作
- 詳解springboot+mybatis-plue實(shí)現(xiàn)內(nèi)置的CRUD使用詳情
- SpringBoot整合Mybatis實(shí)現(xiàn)CRUD
- Spring Boot整合MyBatis-Plus實(shí)現(xiàn)CRUD操作的示例代碼
相關(guān)文章
java如何獲取兩個(gè)List集合之間的交集、差集、并集
在日常開發(fā)中經(jīng)常會(huì)遇到對2個(gè)集合的操作,例如2個(gè)集合之間取相同的元素(交集),2個(gè)集合之間取不相同的元素(差集)等等,這篇文章主要給大家介紹了關(guān)于java如何獲取兩個(gè)List集合之間的交集、差集、并集的相關(guān)資料,需要的朋友可以參考下2024-02-02
Java查搜索文件內(nèi)容實(shí)現(xiàn)方式
用戶為解決無法搜索文件內(nèi)容的問題,編寫了一個(gè)支持單文件、文件夾及多層遞歸查找的工具,具備字符串匹配及忽略大小寫功能,并計(jì)劃擴(kuò)展日期、創(chuàng)建人等組合搜索條件,最終打包成exe便于快速查找所有文件內(nèi)容2025-09-09
Linux實(shí)時(shí)查看Java接口數(shù)據(jù)的案例方法
在Linux系統(tǒng)中實(shí)時(shí)查看Java接口數(shù)據(jù)通常涉幾個(gè)步驟,通過示例代碼說明如何使用Python的requests庫和Linux的cron作業(yè)來定期查詢Java應(yīng)用程序的接口并打印結(jié)果,感興趣的朋友跟隨小編一起看看吧2024-06-06
Spring+SpringMVC+MyBatis深入學(xué)習(xí)及搭建(一)之MyBatis的基礎(chǔ)知識(shí)
這篇文章主要介紹了Spring+SpringMVC+MyBatis深入學(xué)習(xí)及搭建(一)之MyBatis的基礎(chǔ)知識(shí),需要的朋友可以參考下2017-05-05
Java Quartz觸發(fā)器CronTriggerBean配置用法詳解
這篇文章主要介紹了Java Quartz觸發(fā)器CronTriggerBean配置用法詳解,本篇文章通過簡要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下2021-08-08
SpringBoot監(jiān)聽器的實(shí)現(xiàn)示例
在SpringBoot中,你可以使用監(jiān)聽器來響應(yīng)特定的事件,本文主要介紹了SpringBoot監(jiān)聽器的實(shí)現(xiàn)示例,具有一定的參考價(jià)值,感興趣的可以了解一下2023-12-12
基于SpringBoot?使用?Flink?收發(fā)Kafka消息的示例詳解
這篇文章主要介紹了基于SpringBoot?使用?Flink?收發(fā)Kafka消息,本文通過示例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-01-01
RestTemplate響應(yīng)中如何獲取輸入流InputStream
這篇文章主要介紹了RestTemplate響應(yīng)中如何獲取輸入流InputStream問題,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-01-01

