SpringMVC的Controller用于处理用户的请求。Controller相当于Struts1里的Action,他们的实现机制、运行原理都类似
Controller是个接口,一般直接继承AbstrcatController,并实现handleRequestInternal方法。handleRequestInternal方法相当于Struts1的execute方法
import org.springframework.web.servlet.ModelAndView;import org.springframework.web.servlet.mvc.AbstractController;public class CatController extends AbstractController{private ICatService catService;//setter、getter略 protected ModelAndView handleRequestInternal(HttpServletRequestrequest,HttpServletResponse response) throws Exception{String action =request.getParameter("action");if("list".equals(action)){return this.list(request,response);}}protected ModelAndView list(HttpServletRequestrequest,HttpServletResponse response) throws Exception{List<Cat> catList =catService.listCat();request.setAttribute("catList", catList);return new ModelAndView("cat/listCat");}}
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1142
183.71 KB下载数642
644.84 KB下载数2755
相关文章
发现更多好内容猜你喜欢
AI推送时光机Spring中MVC模块代码详解
后端开发2023-05-30
Spring之ORM模块代码详解
后端开发2023-05-30
详解python代码模块化
后端开发2024-04-02
Python3 Random模块代码详解
后端开发2022-06-04
spring-boot-autoconfigure模块用法详解
后端开发2022-11-16
Python中logging日志模块代码调试过程详解
后端开发2023-05-18
详解spring mvc中url-pattern的写法
后端开发2023-08-11
Spring MVC中使用Google kaptcha验证码的方法详解
后端开发2023-05-30
详解java中的四种代码块
后端开发2023-05-30
Spring设计模式中代理模式详细讲解
后端开发2023-01-03
spring mvc中的@PathVariable动态参数详解
后端开发2024-04-02
#6 ipdb模块源代码解读
后端开发2023-01-30
详解python时间模块中的datetime模块
后端开发2022-06-04
JavaScript 模块化密码学家:破解模块化编程的代码
后端开发2024-02-18
Python中BeautifulSoup模块详解
后端开发2024-04-02
Python 的Json 模块编码详解
后端开发2024-04-02
Node.js中HTTP模块与事件模块详解
后端开发2022-06-04
Spring MVC项目中的异常处理详解
后端开发2024-04-02
NodeJS中Buffer模块详解
后端开发2022-06-04
咦!没有更多了?去看看其它编程学习网 内容吧