|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: NESTED | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
javax.el Class BeanELResolver
java.lang.Objectjavax.el.ELResolver
javax.el.BeanELResolver
public class BeanELResolver
- extends ELResolver
Defines property resolution behavior on objects using the JavaBeans component architecture.
This resolver handles base objects of any type, as long as the
base is not null. It accepts any object as a property, and
coerces it to a string. That string is then used to find a JavaBeans
compliant property on the base object. The value is accessed using
JavaBeans getters and setters.
This resolver can be constructed in read-only mode, which means that
isReadOnly will always return true and
setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always throw
PropertyNotWritableException.
ELResolvers are combined together using
CompositeELResolvers, to define rich semantics for evaluating
an expression. See the javadocs for ELResolver for details.
Because this resolver handles base objects of any type, it should be placed near the end of a composite resolver. Otherwise, it will claim to have resolved a property before any resolvers that come after it get a chance to test if they can do so as well.
- 从以下版本开始:
- JSP 2.1
- 另请参见:
CompositeELResolver,ELResolver
| 嵌套类摘要 | |
|---|---|
protected static class |
BeanELResolver.BeanProperties
|
protected static class |
BeanELResolver.BeanProperty
|
| 字段摘要 |
|---|
| Fields inherited from class javax.el.ELResolver |
|---|
RESOLVABLE_AT_DESIGN_TIME, TYPE |
| 构造器摘要 | |
|---|---|
BeanELResolver()
Creates a new read/write BeanELResolver. |
|
BeanELResolver(boolean isReadOnly)
Creates a new BeanELResolver whose read-only status is
determined by the given parameter. |
|
| 方法摘要 | |
|---|---|
Class<?> |
getCommonPropertyType(ELContext context,
Object base)
If the base object is not null, returns the most
general type that this resolver accepts for the
property argument. |
Iterator<FeatureDescriptor> |
getFeatureDescriptors(ELContext context,
Object base)
If the base object is not null, returns an
Iterator containing the set of JavaBeans properties
available on the given object. |
Class<?> |
getType(ELContext context,
Object base,
Object property)
If the base object is not null, returns the most
general acceptable type that can be set on this bean property. |
Object |
getValue(ELContext context,
Object base,
Object property)
If the base object is not null, returns the current
value of the given property on this bean. |
boolean |
isReadOnly(ELContext context,
Object base,
Object property)
If the base object is not null, returns whether a call
to setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail. |
void |
setValue(ELContext context,
Object base,
Object property,
Object val)
If the base object is not null, attempts to set the
value of the given property on this bean. |
| 类方法继承 java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 构造器详细信息 |
|---|
BeanELResolver
public BeanELResolver()
- Creates a new read/write
BeanELResolver.
BeanELResolver
public BeanELResolver(boolean isReadOnly)
- Creates a new
BeanELResolverwhose read-only status is determined by the given parameter.- 参数:
isReadOnly-trueif this resolver cannot modify beans;falseotherwise.
| 方法详细信息 |
|---|
getType
public Class<?> getType(ELContext context, Object base, Object property)
- If the base object is not
null, returns the most general acceptable type that can be set on this bean property.If the base is not
null, thepropertyResolvedproperty of theELContextobject must be set totrueby this resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.The provided property will first be coerced to a
String. If there is aBeanInfoPropertyfor this property and there were no errors retrieving it, thepropertyTypeof thepropertyDescriptoris returned. Otherwise, aPropertyNotFoundExceptionis thrown. - 规范说明:
getTypein classELResolver
- 参数:
context- The context of this evaluation.base- The bean to analyze.property- The name of the property to analyze. Will be coerced to aString.- 返回:
- If the
propertyResolvedproperty ofELContextwas set totrue, then the most general acceptable type; otherwise undefined. - 抛出异常:
NullPointerException- if context isnullPropertyNotFoundException- ifbaseis notnulland the specified property does not exist or is not readable.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
getValue
public Object getValue(ELContext context, Object base, Object property)
- If the base object is not
null, returns the current value of the given property on this bean.If the base is not
null, thepropertyResolvedproperty of theELContextobject must be set totrueby this resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.The provided property name will first be coerced to a
String. If the property is a readable property of the base object, as per the JavaBeans specification, then return the result of the getter call. If the getter throws an exception, it is propagated to the caller. If the property is not found or is not readable, aPropertyNotFoundExceptionis thrown. - 规范说明:
getValuein classELResolver
- 参数:
context- The context of this evaluation.base- The bean on which to get the property.property- The name of the property to get. Will be coerced to aString.- 返回:
- If the
propertyResolvedproperty ofELContextwas set totrue, then the value of the given property. Otherwise, undefined. - 抛出异常:
NullPointerException- if context isnull.PropertyNotFoundException- ifbaseis notnulland the specified property does not exist or is not readable.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
setValue
public void setValue(ELContext context, Object base, Object property, Object val)
- If the base object is not
null, attempts to set the value of the given property on this bean.If the base is not
null, thepropertyResolvedproperty of theELContextobject must be set totrueby this resolver, before returning. If this property is nottrueafter this method is called, the caller can safely assume no value was set.If this resolver was constructed in read-only mode, this method will always throw
PropertyNotWritableException.The provided property name will first be coerced to a
String. If property is a writable property ofbase(as per the JavaBeans Specification), the setter method is called (passingvalue). If the property exists but does not have a setter, then aPropertyNotFoundExceptionis thrown. If the property does not exist, aPropertyNotFoundExceptionis thrown. - 规范说明:
setValuein classELResolver
- 参数:
context- The context of this evaluation.base- The bean on which to set the property.property- The name of the property to set. Will be coerced to aString.val- The value to be associated with the specified key.- 抛出异常:
NullPointerException- if context isnull.PropertyNotFoundException- ifbaseis notnulland the specified property does not exist.PropertyNotWritableException- if this resolver was constructed in read-only mode, or if there is no setter for the property.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
isReadOnly
public boolean isReadOnly(ELContext context, Object base, Object property)
- If the base object is not
null, returns whether a call tosetValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)will always fail.If the base is not
null, thepropertyResolvedproperty of theELContextobject must be set totrueby this resolver, before returning. If this property is nottrueafter this method is called, the caller can safely assume no value was set.If this resolver was constructed in read-only mode, this method will always return
true.The provided property name will first be coerced to a
String. If property is a writable property ofbase,falseis returned. If the property is found but is not writable,trueis returned. If the property is not found, aPropertyNotFoundExceptionis thrown. - 规范说明:
isReadOnlyin classELResolver
- 参数:
context- The context of this evaluation.base- The bean to analyze.property- The name of the property to analyzed. Will be coerced to aString.- 返回:
- If the
propertyResolvedproperty ofELContextwas set totrue, thentrueif calling thesetValuemethod will always fail orfalseif it is possible that such a call may succeed; otherwise undefined. - 抛出异常:
NullPointerException- if context isnullPropertyNotFoundException- ifbaseis notnulland the specified property does not exist.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
getFeatureDescriptors
public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext context, Object base)
- If the base object is not
null, returns anIteratorcontaining the set of JavaBeans properties available on the given object. Otherwise, returnsnull.The
Iteratorreturned must contain zero or more instances ofFeatureDescriptor. Each info object contains information about a property in the bean, as obtained by calling theBeanInfo.getPropertyDescriptorsmethod. TheFeatureDescriptoris initialized using the same fields as are present in thePropertyDescriptor, with the additional required named attributes "type" and "resolvableAtDesignTime" set as follows:ELResolver.TYPE- The runtime type of the property, fromPropertyDescriptor.getPropertyType().ELResolver.RESOLVABLE_AT_DESIGN_TIME-true.
- 规范说明:
getFeatureDescriptorsin classELResolver
- 参数:
context- The context of this evaluation.base- The bean to analyze.- 返回:
- An
Iteratorcontaining zero or moreFeatureDescriptorobjects, each representing a property on this bean, ornullif thebaseobject isnull. - 另请参见:
FeatureDescriptor
getCommonPropertyType
public Class<?> getCommonPropertyType(ELContext context, Object base)
- If the base object is not
null, returns the most general type that this resolver accepts for thepropertyargument. Otherwise, returnsnull.Assuming the base is not
null, this method will always returnObject.class. This is because any object is accepted as a key and is coerced into a string. - 规范说明:
getCommonPropertyTypein classELResolver
- 参数:
context- The context of this evaluation.base- The bean to analyze.- 返回:
nullif base isnull; otherwiseObject.class.
|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: NESTED | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.
