提交 eb1c039a 编写于 作者: J Juergen Hoeller

WebContentInterceptor does not restrict HTTP methods by default anymore (SPR-6919)

上级 4c39f904
/* /*
* Copyright 2002-2008 the original author or authors. * Copyright 2002-2010 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -54,6 +54,13 @@ public class WebContentInterceptor extends WebContentGenerator implements Handle ...@@ -54,6 +54,13 @@ public class WebContentInterceptor extends WebContentGenerator implements Handle
private PathMatcher pathMatcher = new AntPathMatcher(); private PathMatcher pathMatcher = new AntPathMatcher();
public WebContentInterceptor() {
// no restriction of HTTP methods by default,
// in particular for use with annotated controllers
super(false);
}
/** /**
* Set if URL lookup should always use full path within current servlet * Set if URL lookup should always use full path within current servlet
* context. Else, the path within the current servlet mapping is used * context. Else, the path within the current servlet mapping is used
......
/* /*
* Copyright 2002-2008 the original author or authors. * Copyright 2002-2010 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -19,7 +19,6 @@ package org.springframework.web.servlet.support; ...@@ -19,7 +19,6 @@ package org.springframework.web.servlet.support;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashSet; import java.util.HashSet;
import java.util.Set; import java.util.Set;
import javax.servlet.ServletException; import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
...@@ -107,7 +106,8 @@ public abstract class WebContentGenerator extends WebApplicationObjectSupport { ...@@ -107,7 +106,8 @@ public abstract class WebContentGenerator extends WebApplicationObjectSupport {
/** /**
* Set the HTTP methods that this content generator should support. * Set the HTTP methods that this content generator should support.
* Default is HEAD, GET and POST. * <p>Default is GET, HEAD and POST for simple form controller types;
* unrestricted for general controllers and interceptors.
*/ */
public final void setSupportedMethods(String[] methods) { public final void setSupportedMethods(String[] methods) {
if (methods != null) { if (methods != null) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册