mybatis Generator 工具的使用 DML增刪改
阿新 • • 發佈:2021-12-08
mybatis Generator 工具的使用 DML增刪改
1.新增使用者
點選檢視程式碼
public static void main(String[] args) { //新增使用者 UsersService usersService = new UsersServiceImpl(); Users users = new Users(); users.setUsername("wwd"); users.setUsersex("nan"); int i = usersService.insertUsers(users); System.out.println(i); }
2.修改使用者
點選檢視程式碼
public int updateUsers(Users users) {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UsersMapper mapper = sqlSession.getMapper(UsersMapper.class);
int i = mapper.updateByPrimaryKey(users);
sqlSession.commit();
return i;
}
3.刪除使用者
點選檢視程式碼
public int deleteUsersById(int i) {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UsersMapper mapper = sqlSession.getMapper(UsersMapper.class);
int i1 = mapper.deleteByPrimaryKey(i);
sqlSession.commit();
return i1;
}