码迷,mamicode.com
首页 > 其他好文 > 详细

20170921

时间:2017-09-23 12:33:36      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:springmvc   one   process   使用   默认   can   some   request   malformed   

1.  视图解析流程

     1.1  SpringMVC会将目标方法返回的String、Model或其他数据类型转换为ModelAndView

     1.2  SpringMVC通过ViewResolver将ModelAndView转换转换成物理视图View

     1.3 SpringMVC通过View的render方法进行渲染

     1.4 InternalSourceView是比较常见的视图,InternalSourceViewResolver则是为了进行转换前者,该View的渲染方式是通过forword  JSP实现

2. 若项目中使用了JSTL,springmvc会自动把InternalResourceView转换成JstlView

3. <mvc:view-controller>能够配置直接转发的页面

4. 自定义视图的步骤

    4.1  自定义View并实现接口View,需要添加@Component注解使其变为Spring容器的组件

   4.2  在spring-mvc配置文件中配置 BeanNameResolver(根据名称生成视图View)

5. 以"redirect:"开头实现重定向功能

    以"forward:"开头实现转发功能

6. 如果采用springmvc form产生一下错误:

 The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). 

  有可能是form中的path无法与pojo的属性一一对应导致!!!

7. springmvc form默认需要一个key=command的域对象进行回显

8. <mvc:default-servlet-handler/>标签解决静态资源无法映射的问题

9. 

 

20170921

标签:springmvc   one   process   使用   默认   can   some   request   malformed   

原文地址:http://www.cnblogs.com/xpawn/p/7566597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!