avatar

SpringBoot-基于Mybatis实现增删改查

一、使用 generator 插件生成 pojo 和 mapper

参考:Mybatis配置generator插件

二、Controller编写

1、页面跳转方法

1
2
3
4
5
6
7
8
@Controller
public class PageController {
//页面跳转方法
@RequestMapping("/{page}")
public String showPage(@PathVariable String page){
return page;
}
}

2、增删改查功能

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@Controller
@RequestMapping("/user")
public class UsersController {
@Autowired
private UsersService usersService;

//添加用户信息
@PostMapping("/addUser")
public String addUsers(User user){
try{
this.usersService.addUsers(user);
}catch (Exception e){
e.printStackTrace();
return "error";
}
return "redirect:/ok";
}

//获取所有用户信息
@GetMapping("/findUserAll")
public String findUserAll(Model model){
try{
List<User> list = this.usersService.findUserAll();
model.addAttribute("list",list);
}catch (Exception e){
e.printStackTrace();
return "error";
}
return "showUsers";
}

//根据id查找用户
@GetMapping("/preUpdateUser")
public String preUpdateUser(Integer id,Model model){
try{
User user = this.usersService.preUpdateUser(id);
model.addAttribute("user",user);
}catch (Exception e){
e.printStackTrace();
return "error";
}
return "updateUser";
}

//更新用户信息
@PostMapping("/updateUser")
public String updateUser(User user){
try{
this.usersService.modifyUsers(user);
}catch (Exception e){
e.printStackTrace();
return "error";
}
return "redirect:/ok";
}

//根据id删除用户
@GetMapping("/deleteUser")
public String deleteUser(Integer id){
try{
this.usersService.dropUsersById(id);
}catch (Exception e){
e.printStackTrace();
return "error";
}
return "redirect:/ok";
}
}

二、业务层编写

UserServiceImpl

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@Service
public class UsersServiceImpl implements UsersService {
@Autowired
private UserMapper userMapper;

//添加用户信息
@Override
@Transactional
public void addUsers(User user) {
this.userMapper.insert(user);
}

//获取所有用户信息
@Override
public List<User> findUserAll() {
UserExample example = new UserExample();
return this.userMapper.selectByExample(example);
}

//根据id查找用户
@Override
public User preUpdateUser(Integer id) {
return this.userMapper.selectByPrimaryKey(id);
}

//更新用户信息
@Override
@Transactional
public void modifyUsers(User user) {
this.userMapper.updateByPrimaryKey(user);
}

//根据id删除用户
@Override
@Transactional
public void dropUsersById(Integer id) {
this.userMapper.deleteByPrimaryKey(id);
}


}

四、简单前端页面部分代码

所有页面开头需加入 Thymeleaf 支持

1
<html lang="en" xmlns:th="http://www.thymeleaf.org">

还需编写成功提示页和失败页面,随需求添加即可。

1、用户信息展示页

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<table border="1" align="center">
<tr>
<th>用户ID</th>
<th>用户姓名</th>
<th>用户性别</th>
<th>操作</th>
</tr>
<tr th:each="u : ${list}">
<td th:text="${u.id}"></td>
<td th:text="${u.name}"></td>
<td th:text="${u.gender}"></td>
<td>
<a th:href="@{/user/preUpdateUser(id=${u.id})}">修改</a>
<a th:href="@{/user/deleteUser(id=${u.id})}">删除</a>
</td>
</tr>
</table>

2、添加用户信息页

1
2
3
4
5
<form th:action="@{/user/addUser}" method="post">
<input type="text" name="name"><br/>
<input type="text" name="gender"><br/>
<input type="submit" value="添加">
</form>

3、更改用户信息页

1
2
3
4
5
6
<form th:action="@{/user/updateUser}" method="post">
<input type="hidden" name="id" th:value="${user.id}">
<input type="text" name="name" th:value="${user.name}"><br/>
<input type="text" name="gender" th:value="${user.gender}"><br/>
<input type="submit" value="添加">
</form>

评论