本文整理汇总了Java中org.springframework.expression.spel.support.ReflectivePropertyAccessor类的典型用法代码示例。如果您正苦于以下问题:Java ReflectivePropertyAccessor类的具体用法?Java ReflectivePropertyAccessor怎么用?Java ReflectivePropertyAccessor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ReflectivePropertyAccessor类属于org.springframework.expression.spel.support包,在下文中一共展示了ReflectivePropertyAccessor类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSpringExpressionParser
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
/**
* Gets spring expression parser.
*
* @return the spring expression parser
*/
protected SpringELExpressionParser getSpringExpressionParser() {
final SpelParserConfiguration configuration = new SpelParserConfiguration();
final SpelExpressionParser spelExpressionParser = new SpelExpressionParser(configuration);
final SpringELExpressionParser parser = new SpringELExpressionParser(spelExpressionParser,
this.flowBuilderServices.getConversionService());
parser.addPropertyAccessor(new ActionPropertyAccessor());
parser.addPropertyAccessor(new BeanFactoryPropertyAccessor());
parser.addPropertyAccessor(new FlowVariablePropertyAccessor());
parser.addPropertyAccessor(new MapAdaptablePropertyAccessor());
parser.addPropertyAccessor(new MessageSourcePropertyAccessor());
parser.addPropertyAccessor(new ScopeSearchingPropertyAccessor());
parser.addPropertyAccessor(new BeanExpressionContextAccessor());
parser.addPropertyAccessor(new MapAccessor());
parser.addPropertyAccessor(new MapAdaptablePropertyAccessor());
parser.addPropertyAccessor(new EnvironmentAccessor());
parser.addPropertyAccessor(new ReflectivePropertyAccessor());
return parser;
}
示例2: isCompilable
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public boolean isCompilable() {
if (this.indexedType == IndexedType.ARRAY) {
return (this.exitTypeDescriptor != null);
}
else if (this.indexedType == IndexedType.LIST) {
return this.children[0].isCompilable();
}
else if (this.indexedType == IndexedType.MAP) {
return (this.children[0] instanceof PropertyOrFieldReference || this.children[0].isCompilable());
}
else if (this.indexedType == IndexedType.OBJECT) {
// If the string name is changing the accessor is clearly going to change (so compilation is not possible)
if (this.cachedReadAccessor != null &&
(this.cachedReadAccessor instanceof ReflectivePropertyAccessor.OptimalPropertyAccessor) &&
(getChild(0) instanceof StringLiteral)) {
return true;
}
}
return false;
}
示例3: preBuilderTest
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
/**
* Test the default perbuilder
*/
@Test
public void preBuilderTest(){
DefaultPreBuilder<DefaultSpelTestObj> t = new DefaultPreBuilder<DefaultSpelTestObj>(DefaultSpelTestObj.class);
DefaultSpelTestObj obj = t.build(rules);
SpelTransformer<DefaultSpelTestObj, DefaultSpelTestObj> transformer = new SpelTransformer<DefaultSpelTestObj, DefaultSpelTestObj>();
transformer.setRules(rules);
List<PropertyAccessor> l = new ArrayList<PropertyAccessor>();
l.add(new ReflectivePropertyAccessor());
transformer.setInputaccessors(l);
transformer.setOutputaccessors(l);
transformer.setOutputPreBuilder(t);
DefaultSpelTestObj result = (DefaultSpelTestObj) transformer
.transform(in);
}
示例4: getValue
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public TypedValue getValue() {
Class<?> targetObjectRuntimeClass = getObjectClass(this.targetObject);
try {
if (Indexer.this.cachedReadName != null && Indexer.this.cachedReadName.equals(this.name) &&
Indexer.this.cachedReadTargetType != null &&
Indexer.this.cachedReadTargetType.equals(targetObjectRuntimeClass)) {
// It is OK to use the cached accessor
return Indexer.this.cachedReadAccessor.read(this.evaluationContext, this.targetObject, this.name);
}
List<PropertyAccessor> accessorsToTry = AstUtils.getPropertyAccessorsToTry(
targetObjectRuntimeClass, this.evaluationContext.getPropertyAccessors());
if (accessorsToTry != null) {
for (PropertyAccessor accessor : accessorsToTry) {
if (accessor.canRead(this.evaluationContext, this.targetObject, this.name)) {
if (accessor instanceof ReflectivePropertyAccessor) {
accessor = ((ReflectivePropertyAccessor) accessor).createOptimalAccessor(
this.evaluationContext, this.targetObject, this.name);
}
Indexer.this.cachedReadAccessor = accessor;
Indexer.this.cachedReadName = this.name;
Indexer.this.cachedReadTargetType = targetObjectRuntimeClass;
return accessor.read(this.evaluationContext, this.targetObject, this.name);
}
}
}
}
catch (AccessException ex) {
throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.INDEXING_NOT_SUPPORTED_FOR_TYPE,
this.targetObjectTypeDescriptor.toString());
}
throw new SpelEvaluationException(getStartPosition(), SpelMessage.INDEXING_NOT_SUPPORTED_FOR_TYPE,
this.targetObjectTypeDescriptor.toString());
}
示例5: SPR9994_bridgeMethods
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@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());
}
示例6: SPR10162_onlyBridgeMethod
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@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());
}
示例7: testAttributeReplacement
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Test
public void testAttributeReplacement() {
SpelTransformer<DefaultSpelTestObj, DefaultSpelTestObj> transformer = new SpelTransformer<DefaultSpelTestObj, DefaultSpelTestObj>();
transformer.setRules(rules);
List<PropertyAccessor> l = new ArrayList<PropertyAccessor>();
l.add(new ReflectivePropertyAccessor());
transformer.setInputaccessors(l);
transformer.setOutputaccessors(l);
transformer.setOutputObject(new DefaultSpelTestObj());
DefaultSpelTestObj result = (DefaultSpelTestObj) transformer
.transform(in);
}
示例8: getValue
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
public TypedValue getValue() {
Class<?> targetObjectRuntimeClass = getObjectClass(targetObject);
try {
if (cachedReadName != null && cachedReadName.equals(name) && cachedReadTargetType != null &&
cachedReadTargetType.equals(targetObjectRuntimeClass)) {
// it is OK to use the cached accessor
return cachedReadAccessor.read(this.eContext, this.targetObject, this.name);
}
List<PropertyAccessor> accessorsToTry =
AstUtils.getPropertyAccessorsToTry(targetObjectRuntimeClass, eContext.getPropertyAccessors());
if (accessorsToTry != null) {
for (PropertyAccessor accessor : accessorsToTry) {
if (accessor.canRead(this.eContext, this.targetObject, this.name)) {
if (accessor instanceof ReflectivePropertyAccessor) {
accessor = ((ReflectivePropertyAccessor) accessor).createOptimalAccessor(
this.eContext, this.targetObject, this.name);
}
cachedReadAccessor = accessor;
cachedReadName = this.name;
cachedReadTargetType = targetObjectRuntimeClass;
return accessor.read(this.eContext, this.targetObject, this.name);
}
}
}
}
catch (AccessException ex) {
throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.INDEXING_NOT_SUPPORTED_FOR_TYPE,
this.td.toString());
}
throw new SpelEvaluationException(getStartPosition(), SpelMessage.INDEXING_NOT_SUPPORTED_FOR_TYPE,
this.td.toString());
}
示例9: canRead
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public boolean canRead(EvaluationContext context, Object target, String name) throws AccessException {
if (target instanceof BaseObjectWithExts && name != null) {
for (PropertyAccessor accessor : context.getPropertyAccessors()) {
if (accessor instanceof ReflectivePropertyAccessor) {
return !accessor.canRead(context, target, name);
}
}
}
return false;
}
示例10: canWrite
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public boolean canWrite(EvaluationContext context, Object target, String name) throws AccessException {
if (target instanceof BaseObjectWithExts && name != null) {
for (PropertyAccessor accessor : context.getPropertyAccessors()) {
if (accessor instanceof ReflectivePropertyAccessor) {
return !accessor.canWrite(context, target, name);
}
}
}
return false;
}
示例11: canRead
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public boolean canRead(EvaluationContext context, Object target, String name) throws AccessException {
if (target instanceof AuditedBaseEntityWithExt && name != null) {
for (PropertyAccessor accessor : context.getPropertyAccessors()) {
if (accessor instanceof ReflectivePropertyAccessor) {
return !accessor.canRead(context, target, name);
}
}
}
return false;
}
示例12: canWrite
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public boolean canWrite(EvaluationContext context, Object target, String name) throws AccessException {
if (target instanceof AuditedBaseEntityWithExt && name != null) {
for (PropertyAccessor accessor : context.getPropertyAccessors()) {
if (accessor instanceof ReflectivePropertyAccessor) {
return !accessor.canWrite(context, target, name);
}
}
}
return false;
}
示例13: ConsumerBeanAutoConfiguration
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
public ConsumerBeanAutoConfiguration() {
this.expressionParser = new SpelExpressionParser();
this.expressionPropertyAccessors = new ArrayList<PropertyAccessor>();
this.expressionPropertyAccessors.add(new EnvironmentAccessor());
this.expressionPropertyAccessors.add(new BeanFactoryAccessor());
this.expressionPropertyAccessors.add(new ReflectivePropertyAccessor());
this.expressionPropertyAccessors.add(new DirectFieldAccessPropertyAccessor());
}
示例14: getValue
import org.springframework.expression.spel.support.ReflectivePropertyAccessor; //导入依赖的package包/类
@Override
public TypedValue getValue() {
Class<?> targetObjectRuntimeClass = getObjectClass(this.targetObject);
try {
if (Indexer.this.cachedReadName != null && Indexer.this.cachedReadName.equals(this.name) &&
Indexer.this.cachedReadTargetType != null &&
Indexer.this.cachedReadTargetType.equals(targetObjectRuntimeClass)) {
// It is OK to use the cached accessor
return Indexer.this.cachedReadAccessor.read(this.evaluationContext, this.targetObject, this.name);
}
List<PropertyAccessor> accessorsToTry = AstUtils.getPropertyAccessorsToTry(
targetObjectRuntimeClass, this.evaluationContext.getPropertyAccessors());
if (accessorsToTry != null) {
for (PropertyAccessor accessor : accessorsToTry) {
if (accessor.canRead(this.evaluationContext, this.targetObject, this.name)) {
if (accessor instanceof ReflectivePropertyAccessor) {
accessor = ((ReflectivePropertyAccessor) accessor).createOptimalAccessor(
this.evaluationContext, this.targetObject, this.name);
}
Indexer.this.cachedReadAccessor = accessor;
Indexer.this.cachedReadName = this.name;
Indexer.this.cachedReadTargetType = targetObjectRuntimeClass;
if (accessor instanceof ReflectivePropertyAccessor.OptimalPropertyAccessor) {
ReflectivePropertyAccessor.OptimalPropertyAccessor optimalAccessor =
(ReflectivePropertyAccessor.OptimalPropertyAccessor) accessor;
Member member = optimalAccessor.member;
Indexer.this.exitTypeDescriptor = CodeFlow.toDescriptor(member instanceof Method ?
((Method) member).getReturnType() : ((Field) member).getType());
}
return accessor.read(this.evaluationContext, this.targetObject, this.name);
}
}
}
}
catch (AccessException ex) {
throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.INDEXING_NOT_SUPPORTED_FOR_TYPE,
this.targetObjectTypeDescriptor.toString());
}
throw new SpelEvaluationException(getStartPosition(), SpelMessage.INDEXING_NOT_SUPPORTED_FOR_TYPE,
this.targetObjectTypeDescriptor.toString());
}