一、使用 generator 插件生成 pojo 和 mapper
二、Controller编写
1、页面跳转方法
1 |
|
2、增删改查功能
1 |
|
二、业务层编写
UserServiceImpl
1 |
|
四、简单前端页面部分代码
所有页面开头需加入 Thymeleaf 支持
1 | <html lang="en" xmlns:th="http://www.thymeleaf.org"> |
还需编写成功提示页和失败页面,随需求添加即可。
1、用户信息展示页
1 | <table border="1" align="center"> |
2、添加用户信息页
1 | <form th:action="@{/user/addUser}" method="post"> |
3、更改用户信息页
1 | <form th:action="@{/user/updateUser}" method="post"> |
评论