DATACMNS-630 - Added HandlerMethodArgumentResolver to create proxies for interfaces.

We now ship a ProxyingHandlerMethodArgumentResolver that gets registered when @EnableSpringDataWebSupport is activated. It creates Map-based proxy instances for interfaces used as Spring MVC controller method parameters.
This commit is contained in:
Oliver Gierke
2015-01-10 17:20:36 +01:00
parent 127747f3fb
commit 57a42ababd
7 changed files with 650 additions and 5 deletions

View File

@@ -120,7 +120,7 @@ public class MapAccessingMethodInterceptorUnitTests {
new MapAccessingMethodInterceptor(Collections.<String, Object> emptyMap()).invoke(invocation);
}
public static interface Sample {
interface Sample {
String getName();