Spring Web
ViVAJoy2008
这个作者很懒,什么都没留下…
展开
-
Spring乱码相关
[size=large]一、用characterEncodingFilter来过滤请求的输入[/size] [size=medium]一定要将这个配置放在web.xml的最前面,配置如下:[/size] [code="xml"] characterEncodingFilter org.springframework.web.filter.Chara...原创 2012-01-14 13:05:12 · 124 阅读 · 0 评论 -
跟Spring有关的,在web.xml的配置
[size=medium]Spring MVC的前端控制器,用来处理所有请求[/size] [code="xml"] Spring MVC Dispatcher Servlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF...原创 2012-01-14 13:18:38 · 133 阅读 · 0 评论 -
appcontext中的mvc:resources注解
从spring3 mvc支持rest,丰富的注解,应用起来非常方便,对所有的请求当做rest来处理,这就会带来一个问题,如果是静态资源,如js、css和图片,就会导致无法完成请求。为了绕过DispatcherServlet对这些静态资源的处理,多使用UrlRewriteFilter。 web.xml配置如下 [code="xml"] starframe org.springfram...原创 2012-01-14 14:00:34 · 248 阅读 · 0 评论 -
mvc:view-controller
mvc:view-controller可以在不需要Controller处理request的情况,转向到设置的View [code="java"] @EnableWebMvc @Configuration public class WebConfig extends WebMvcConfigurerAdapter { @Override publ...原创 2012-01-14 14:25:35 · 139 阅读 · 0 评论 -
Spring MVC拦截器
[size=medium] The ordered set of interceptors that intercept HTTP Servlet Requests handled by Controllers. Interceptors allow requests to be pre/post processed before/after handling. Each intecepto...原创 2012-01-14 14:41:11 · 149 阅读 · 0 评论 -
Puzzle between modelAttribute and commandName in Spring FormTag
平常用的时候form tag都是用commandName来设定form的对象上下文。 看Spring例子的时候又发现了个modelAttribute,有着一样的功能。在国外的网站查了查,有如此的解释 [code="java"] /** * Set the name of the form attribute in the model. * May be a ...原创 2012-01-15 22:39:16 · 156 阅读 · 0 评论