Spring练习-CRUD操作[4]-用户列表展示
文章目录
1.角色列表的展示步骤分析
① 点击角色管理菜单发送请求到服务器端(修改角色管理菜单的url地址)
② 创建RoleController和showList()方法
③ 创建RoleService和showList()方法
④ 创建RoleDao和findAll()方法
⑤ 使用JdbcTemplate完成查询操作
⑥ 将查询数据存储到Model中
⑦ 转发到role-list.jsp页面进行展示
2.部署查看空项目
难点在于查询用户关联的角色
3.编写代码
3.1 修改用户的POJO类User.class
要与角色关联,需要添加角色集合.
//用户所关联的角色集合
private List<Role> roles;
public List<Role> getRoles() {
return roles;
}
public void setRoles(List<Role> roles) {
this.roles = roles;
}
3.2 UserController添加查询方法
package com.itspring.controller;
import com.itspring.domain.User;
import com.itspring.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import java.util.List;
@Control