Python 官方文档:入门教程 => 点击学习
controller接口跳转到另一个controller接口 @RestController @RequestMapping("/aaa") public class TestC
@RestController
@RequestMapping("/aaa")
public class TestController{
@RequestMapping("/test1")
public ModelAndView test1(httpservletResponse response) {
ModelAndView view = new ModelAndView();
view.setViewName("redirect:/aaa/test2");
// try {
// response.sendRedirect("/test2");
// } catch (ioException e) {
// e.printStackTrace();
// }
return view ;
}
@RequestMapping("/test2")
public ModelAndView test2() {
System.out.println("this is test2");
}
}
1、不可以直接以类的方式调用
2、可以通过url 转发的方式,传递到另外一个Controller类中运行
3、在Controller 中注入的 service,如果直接用来作为实例变量传递会报空值
4、注意Controller 层不处理繁杂的逻辑,逻辑当交给Service层处理
5、静态资源映射,也就是静态资源放行,在前端控制器 拦截为 "/" 时,需要对.js, .jpg, .CSS 等静态资源放行
6、/*,会造成jsp,js,jpg,。。。都被拦截,无法执行,一般不采用
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: controller接口跳转到另一个controller接口的实现
本文链接: https://lsjlt.com/news/134340.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0