模块简述
User:与数据库User表对应的实体类
UserController:控制页面跳转以及前端后台数据传递的类(控制层)
IUserDao:数据库和service之间的接口。在UserMapper.xml和IUserService接口之间传递数据
IUserService:持久层Dao和控制层Controller之间的接口
UserServiceImpl:实现接口IUserService的功能
UserMapper.xml:MyBatis的SQL语句执行模块
applicationContext.xml
db.properties:数据库的用户名、密码等JDBC操作值
实现用户的增删改查