|
|
|
@ -17,6 +17,7 @@ |
|
|
|
package org.springframework.context.expression; |
|
|
|
package org.springframework.context.expression; |
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.config.BeanExpressionContext; |
|
|
|
import org.springframework.beans.factory.config.BeanExpressionContext; |
|
|
|
|
|
|
|
import org.springframework.core.convert.TypeDescriptor; |
|
|
|
import org.springframework.expression.AccessException; |
|
|
|
import org.springframework.expression.AccessException; |
|
|
|
import org.springframework.expression.EvaluationContext; |
|
|
|
import org.springframework.expression.EvaluationContext; |
|
|
|
import org.springframework.expression.PropertyAccessor; |
|
|
|
import org.springframework.expression.PropertyAccessor; |
|
|
|
@ -50,4 +51,9 @@ public class BeanExpressionContextAccessor implements PropertyAccessor { |
|
|
|
return new Class[] {BeanExpressionContext.class}; |
|
|
|
return new Class[] {BeanExpressionContext.class}; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public TypeDescriptor getTypeDescriptor(EvaluationContext context, |
|
|
|
|
|
|
|
Object target, String name) { |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |