Browse Source
ProxyingHandlerMethodArgumentResolver is now more lenient when it comes to which types to support for proxying. As indicated in the ticket, we've been to aggressive opting in for all interfaces which - depending on the order of converter registrations - caused us interfering with other interface based resolutions (e.g. in Spring Mobile, Security etc.). We now only aggressively kick in if either the type or parameter is annotated with @ProjectedPayload or the type itself is not a Spring Framework or native Java one. This should leave user defined types still be accepted whereas the types we previously erroneously interfered with should now be ignored.pull/191/merge
4 changed files with 150 additions and 2 deletions
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
import org.springframework.data.web.ProxyingHandlerMethodArgumentResolverUnitTests; |
||||
|
||||
/* |
||||
* Copyright 2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
/** |
||||
* @author Oliver Gierke |
||||
* @see ProxyingHandlerMethodArgumentResolverUnitTests |
||||
*/ |
||||
public interface SampleInterface {} |
||||
@ -0,0 +1,92 @@
@@ -0,0 +1,92 @@
|
||||
/* |
||||
* Copyright 2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.web; |
||||
|
||||
import static org.hamcrest.CoreMatchers.*; |
||||
import static org.junit.Assert.*; |
||||
|
||||
import java.lang.reflect.Method; |
||||
import java.util.List; |
||||
|
||||
import org.junit.Test; |
||||
import org.springframework.core.MethodParameter; |
||||
import org.springframework.core.convert.support.DefaultConversionService; |
||||
import org.springframework.data.web.ProjectingJackson2HttpMessageConverterUnitTests.SampleInterface; |
||||
|
||||
/** |
||||
* Unit tests for {@link ProxyingHandlerMethodArgumentResolver}. |
||||
* |
||||
* @author Oliver Gierke |
||||
* @soundtrack Karlijn Langendijk & Sönke Meinen - Englishman In New York (Sting, |
||||
* https://www.youtube.com/watch?v=O7LZsqrnaaA)
|
||||
*/ |
||||
public class ProxyingHandlerMethodArgumentResolverUnitTests { |
||||
|
||||
ProxyingHandlerMethodArgumentResolver resolver = new ProxyingHandlerMethodArgumentResolver( |
||||
new DefaultConversionService()); |
||||
|
||||
@Test // DATACMNS-776
|
||||
public void supportAnnotatedInterface() throws Exception { |
||||
|
||||
Method method = Controller.class.getMethod("with", AnnotatedInterface.class); |
||||
MethodParameter parameter = new MethodParameter(method, 0); |
||||
|
||||
assertThat(resolver.supportsParameter(parameter), is(true)); |
||||
} |
||||
|
||||
@Test // DATACMNS-776
|
||||
public void supportsUnannotatedInterfaceFromUserPackage() throws Exception { |
||||
|
||||
Method method = Controller.class.getMethod("with", SampleInterface.class); |
||||
MethodParameter parameter = new MethodParameter(method, 0); |
||||
|
||||
assertThat(resolver.supportsParameter(parameter), is(true)); |
||||
} |
||||
|
||||
@Test // DATACMNS-776
|
||||
public void doesNotSupportUnannotatedInterfaceFromSpringNamespace() throws Exception { |
||||
|
||||
Method method = Controller.class.getMethod("with", UnannotatedInterface.class); |
||||
MethodParameter parameter = new MethodParameter(method, 0); |
||||
|
||||
assertThat(resolver.supportsParameter(parameter), is(false)); |
||||
} |
||||
|
||||
@Test // DATACMNS-776
|
||||
public void doesNotSupportCoreJavaType() throws Exception { |
||||
|
||||
Method method = Controller.class.getMethod("with", List.class); |
||||
MethodParameter parameter = new MethodParameter(method, 0); |
||||
|
||||
assertThat(resolver.supportsParameter(parameter), is(false)); |
||||
} |
||||
|
||||
@ProjectedPayload |
||||
interface AnnotatedInterface {} |
||||
|
||||
interface UnannotatedInterface {} |
||||
|
||||
interface Controller { |
||||
|
||||
void with(AnnotatedInterface param); |
||||
|
||||
void with(UnannotatedInterface param); |
||||
|
||||
void with(SampleInterface param); |
||||
|
||||
void with(List<Object> param); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue