Java Code Examples for org.springframework.expression.spel.support.ReflectivePropertyAccessor#read()

The following examples show how to use org.springframework.expression.spel.support.ReflectivePropertyAccessor#read() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SpelReproTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Test
public void SPR9994_bridgeMethods() throws Exception {
	ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
	StandardEvaluationContext context = new StandardEvaluationContext();
	Object target = new GenericImplementation();
	TypedValue value = accessor.read(context, target, "property");
	assertEquals(Integer.class, value.getTypeDescriptor().getType());
}
 
Example 2
Source File: SpelReproTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Test
public void SPR10162_onlyBridgeMethod() throws Exception {
	ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
	StandardEvaluationContext context = new StandardEvaluationContext();
	Object target = new OnlyBridgeMethod();
	TypedValue value = accessor.read(context, target, "property");
	assertEquals(Integer.class, value.getTypeDescriptor().getType());
}
 
Example 3
Source File: SpelReproTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Test
public void SPR9994_bridgeMethods() throws Exception {
	ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
	StandardEvaluationContext context = new StandardEvaluationContext();
	Object target = new GenericImplementation();
	TypedValue value = accessor.read(context, target, "property");
	assertEquals(Integer.class, value.getTypeDescriptor().getType());
}
 
Example 4
Source File: SpelReproTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Test
public void SPR10162_onlyBridgeMethod() throws Exception {
	ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
	StandardEvaluationContext context = new StandardEvaluationContext();
	Object target = new OnlyBridgeMethod();
	TypedValue value = accessor.read(context, target, "property");
	assertEquals(Integer.class, value.getTypeDescriptor().getType());
}
 
Example 5
Source File: SpelReproTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Test
public void SPR9994_bridgeMethods() throws Exception {
	ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
	StandardEvaluationContext context = new StandardEvaluationContext();
	Object target = new GenericImplementation();
	TypedValue value = accessor.read(context, target, "property");
	assertEquals(Integer.class, value.getTypeDescriptor().getType());
}
 
Example 6
Source File: SpelReproTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Test
public void SPR10162_onlyBridgeMethod() throws Exception {
	ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
	StandardEvaluationContext context = new StandardEvaluationContext();
	Object target = new OnlyBridgeMethod();
	TypedValue value = accessor.read(context, target, "property");
	assertEquals(Integer.class, value.getTypeDescriptor().getType());
}