摘要: 1.get @RequestMapping(value = "/user",method = RequestMethod.GET) public String user(){ System.out.println("查询所有用户信息"); return "success"; } @RequestMa 阅读全文
posted @ 2022-09-07 23:54 写代码的小哥哥 阅读(28) 评论(0) 推荐(0)
摘要: 1. internalResourceView 转发到另一个页面 @RequestMapping("/internal") public String internal(){ return "forward:/test/test1"; } 2 redirectView 视图重定向 @RequestM 阅读全文
posted @ 2022-09-07 23:41 写代码的小哥哥 阅读(20) 评论(0) 推荐(0)