@PreAuthorize("hasRole('admin')") @GetMapping ("/findAllUser") public ModelAndView findAllUser(Model model){ List<User> users = userService.findAllUser(); model.addAttribute("users",users); ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("/oss/peoples"); return modelAndView; }不好意思,你的请求路径可能错误了,请查看!
时间: 2024-03-04 15:54:01 浏览: 106
springboot专栏 006 springboot整合mybatis-plus 增删改查 ModelAndView jsp
这段代码中的请求路径是`/findAllUser`,使用了`@GetMapping`注解来处理GET请求方式,同时也使用了`@PreAuthorize`注解来限制只有拥有admin角色的用户才能访问该接口。该方法主要的作用是查询所有的用户并将其添加到Model中,然后返回一个ModelAndView对象,其中视图名称为`/oss/peoples`。
如果你发现请求路径错误,可以根据实际情况进行调整。
阅读全文