📄 beanwrapperimpl.java
字号:
/*
* Copyright 2002-2004 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.beans;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyDescriptor;
import java.beans.PropertyEditor;
import java.beans.PropertyEditorManager;
import java.io.File;
import java.io.InputStream;
import java.lang.reflect.Array;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.propertyeditors.ByteArrayPropertyEditor;
import org.springframework.beans.propertyeditors.ClassEditor;
import org.springframework.beans.propertyeditors.CustomBooleanEditor;
import org.springframework.beans.propertyeditors.CustomNumberEditor;
import org.springframework.beans.propertyeditors.FileEditor;
import org.springframework.beans.propertyeditors.InputStreamEditor;
import org.springframework.beans.propertyeditors.LocaleEditor;
import org.springframework.beans.propertyeditors.PropertiesEditor;
import org.springframework.beans.propertyeditors.StringArrayPropertyEditor;
import org.springframework.beans.propertyeditors.URLEditor;
import org.springframework.util.StringUtils;
/**
* Default implementation of the BeanWrapper interface that should be sufficient
* for all normal uses. Caches introspection results for efficiency.
*
* <p>Note: This class never tries to load a class by name, as this can pose
* class loading problems in J2EE applications with multiple deployment modules.
* The caller is responsible for loading a target class.
*
* <p>Note: Auto-registers all default property editors (not the custom ones)
* in the org.springframework.beans.propertyeditors package.
* Applications can either use a standard PropertyEditorManager to register a
* custom editor before using a BeanWrapperImpl instance, or call the instance's
* registerCustomEditor method to register an editor for the particular instance.
*
* <p>BeanWrapperImpl will convert List and array values to the corresponding
* target arrays, if necessary. Custom property editors that deal with Lists or
* arrays can be written against a comma delimited String as String arrays are
* converted in such a format if the array itself is not assignable.
*
* @author Rod Johnson
* @author Juergen Hoeller
* @author Jean-Pierre Pawlak
* @since 15 April 2001
* @see #registerCustomEditor
* @see java.beans.PropertyEditorManager
* @see org.springframework.beans.propertyeditors.ClassEditor
* @see org.springframework.beans.propertyeditors.FileEditor
* @see org.springframework.beans.propertyeditors.LocaleEditor
* @see org.springframework.beans.propertyeditors.PropertiesEditor
* @see org.springframework.beans.propertyeditors.StringArrayPropertyEditor
* @see org.springframework.beans.propertyeditors.URLEditor
*/
public class BeanWrapperImpl implements BeanWrapper {
/** We'll create a lot of these objects, so we don't want a new logger every time */
private static final Log logger = LogFactory.getLog(BeanWrapperImpl.class);
//---------------------------------------------------------------------
// Instance data
//---------------------------------------------------------------------
/** The wrapped object */
private Object object;
/** The nested path of the object */
private String nestedPath = "";
/** Registry for default PropertyEditors */
private final Map defaultEditors;
/** Map with custom PropertyEditor instances */
private Map customEditors;
/**
* Cached introspections results for this object, to prevent encountering the cost
* of JavaBeans introspection every time.
*/
private CachedIntrospectionResults cachedIntrospectionResults;
/* Map with cached nested BeanWrappers */
private Map nestedBeanWrappers;
//---------------------------------------------------------------------
// Constructors
//---------------------------------------------------------------------
/**
* Create new empty BeanWrapperImpl. Wrapped instance needs to be set afterwards.
* @see #setWrappedInstance
*/
public BeanWrapperImpl() {
// Register default editors in this class, for restricted environments.
// We're not using the JRE's PropertyEditorManager to avoid potential
// SecurityExceptions when running in a SecurityManager.
this.defaultEditors = new HashMap(16);
// Simple editors, without parameterization capabilities.
this.defaultEditors.put(byte[].class, new ByteArrayPropertyEditor());
this.defaultEditors.put(Class.class, new ClassEditor());
this.defaultEditors.put(File.class, new FileEditor());
this.defaultEditors.put(InputStream.class, new InputStreamEditor());
this.defaultEditors.put(Locale.class, new LocaleEditor());
this.defaultEditors.put(Properties.class, new PropertiesEditor());
this.defaultEditors.put(String[].class, new StringArrayPropertyEditor());
this.defaultEditors.put(URL.class, new URLEditor());
// Default instances of parameterizable editors.
// Can be overridden by registering custom instances of those as custom editors.
this.defaultEditors.put(Boolean.class, new CustomBooleanEditor(false));
this.defaultEditors.put(Short.class, new CustomNumberEditor(Short.class, false));
this.defaultEditors.put(Integer.class, new CustomNumberEditor(Integer.class, false));
this.defaultEditors.put(Long.class, new CustomNumberEditor(Long.class, false));
this.defaultEditors.put(BigInteger.class, new CustomNumberEditor(BigInteger.class, false));
this.defaultEditors.put(Float.class, new CustomNumberEditor(Float.class, false));
this.defaultEditors.put(Double.class, new CustomNumberEditor(Double.class, false));
this.defaultEditors.put(BigDecimal.class, new CustomNumberEditor(BigDecimal.class, false));
}
/**
* Create new BeanWrapperImpl for the given object.
* @param object object wrapped by this BeanWrapper
*/
public BeanWrapperImpl(Object object) {
this();
setWrappedInstance(object);
}
/**
* Create new BeanWrapperImpl, wrapping a new instance of the specified class.
* @param clazz class to instantiate and wrap
*/
public BeanWrapperImpl(Class clazz) {
this();
setWrappedInstance(BeanUtils.instantiateClass(clazz));
}
/**
* Create new BeanWrapperImpl for the given object,
* registering a nested path that the object is in.
* @param object object wrapped by this BeanWrapper.
* @param nestedPath the nested path of the object
*/
public BeanWrapperImpl(Object object, String nestedPath) {
this();
setWrappedInstance(object, nestedPath);
}
/**
* Create new BeanWrapperImpl for the given object,
* registering a nested path that the object is in.
* @param object object wrapped by this BeanWrapper.
* @param nestedPath the nested path of the object
* @param superBw the containing BeanWrapper (must not be null)
*/
private BeanWrapperImpl(Object object, String nestedPath, BeanWrapperImpl superBw) {
this.defaultEditors = superBw.defaultEditors;
setWrappedInstance(object, nestedPath);
}
//---------------------------------------------------------------------
// Implementation of BeanWrapper
//---------------------------------------------------------------------
/**
* Switch the target object, replacing the cached introspection results only
* if the class of the new object is different to that of the replaced object.
* @param object new target
*/
public void setWrappedInstance(Object object) {
setWrappedInstance(object, "");
}
/**
* Switch the target object, replacing the cached introspection results only
* if the class of the new object is different to that of the replaced object.
* @param object new target
* @param nestedPath the nested path of the object
*/
public void setWrappedInstance(Object object, String nestedPath) {
if (object == null) {
throw new IllegalArgumentException("Cannot set BeanWrapperImpl target to a null object");
}
this.object = object;
this.nestedPath = nestedPath;
this.nestedBeanWrappers = null;
setIntrospectionClass(object.getClass());
}
public Object getWrappedInstance() {
return this.object;
}
public Class getWrappedClass() {
return this.object.getClass();
}
/**
* Set the class to introspect.
* Needs to be called when the target object changes.
* @param clazz the class to introspect
*/
protected void setIntrospectionClass(Class clazz) {
if (this.cachedIntrospectionResults == null ||
!this.cachedIntrospectionResults.getBeanClass().equals(clazz)) {
this.cachedIntrospectionResults = CachedIntrospectionResults.forClass(clazz);
}
}
public void registerCustomEditor(Class requiredType, PropertyEditor propertyEditor) {
registerCustomEditor(requiredType, null, propertyEditor);
}
public void registerCustomEditor(Class requiredType, String propertyPath, PropertyEditor propertyEditor) {
if (requiredType == null && propertyPath == null) {
throw new IllegalArgumentException("Either requiredType or propertyPath is required");
}
if (this.customEditors == null) {
this.customEditors = new HashMap();
}
if (propertyPath != null) {
this.customEditors.put(propertyPath, new CustomEditorHolder(propertyEditor, requiredType));
}
else {
this.customEditors.put(requiredType, propertyEditor);
}
}
public PropertyEditor findCustomEditor(Class requiredType, String propertyPath) {
if (this.customEditors == null) {
return null;
}
if (propertyPath != null) {
// check property-specific editor first
PropertyEditor editor = getCustomEditor(propertyPath, requiredType);
if (editor == null) {
List strippedPaths = new LinkedList();
addStrippedPropertyPaths(strippedPaths, "", propertyPath);
for (Iterator it = strippedPaths.iterator(); it.hasNext() && editor == null;) {
String strippedPath = (String) it.next();
editor = getCustomEditor(strippedPath, requiredType);
}
}
if (editor != null) {
return editor;
}
else if (requiredType == null) {
requiredType = getPropertyType(propertyPath);
}
}
// no property-specific editor -> check type-specific editor
return getCustomEditor(requiredType);
}
/**
* Get custom editor that has been registered for the given property.
* @return the custom editor, or null if none specific for this property
*/
private PropertyEditor getCustomEditor(String propertyName, Class requiredType) {
CustomEditorHolder holder = (CustomEditorHolder) this.customEditors.get(propertyName);
return (holder != null ? holder.getPropertyEditor(requiredType) : null);
}
/**
* Get custom editor for the given type. If no direct match found,
* try custom editor for superclass (which will in any case be able
* to render a value as String via <code>getAsText</code>).
* @see java.beans.PropertyEditor#getAsText
* @return the custom editor, or null if none found for this type
*/
private PropertyEditor getCustomEditor(Class requiredType) {
if (requiredType != null) {
PropertyEditor editor = (PropertyEditor) this.customEditors.get(requiredType);
if (editor == null) {
for (Iterator it = this.customEditors.keySet().iterator(); it.hasNext();) {
Object key = it.next();
if (key instanceof Class && ((Class) key).isAssignableFrom(requiredType)) {
editor = (PropertyEditor) this.customEditors.get(key);
}
}
}
return editor;
}
return null;
}
/**
* Add property paths with all variations of stripped keys and/or indexes.
* Invokes itself recursively with nested paths
* @param strippedPaths the result list to add to
* @param nestedPath the current nested path
* @param propertyPath the property path to check for keys/indexes to strip
*/
private void addStrippedPropertyPaths(List strippedPaths, String nestedPath, String propertyPath) {
int startIndex = propertyPath.indexOf(PROPERTY_KEY_PREFIX_CHAR);
if (startIndex != -1) {
int endIndex = propertyPath.indexOf(PROPERTY_KEY_SUFFIX_CHAR);
if (endIndex != -1) {
String prefix = propertyPath.substring(0, startIndex);
String key = propertyPath.substring(startIndex, endIndex + 1);
String suffix = propertyPath.substring(endIndex + 1, propertyPath.length());
// strip the first key
strippedPaths.add(nestedPath + prefix + suffix);
// search for further keys to strip, with the first key stripped
addStrippedPropertyPaths(strippedPaths, nestedPath + prefix, suffix);
// search for further keys to strip, with the first key not stripped
addStrippedPropertyPaths(strippedPaths, nestedPath + prefix + key, suffix);
}
}
}
/**
* Determine the first respectively last nested property separator in
* the given property path, ignoring dots in keys (like "map[my.key]").
* @param propertyPath the property path to check
* @param last whether to return the last separator rather than the first
* @return the index of the nested property separator, or -1 if none
*/
private int getNestedPropertySeparatorIndex(String propertyPath, boolean last) {
boolean inKey = false;
int i = (last ? propertyPath.length()-1 : 0);
while ((last && i >= 0) || i < propertyPath.length()) {
switch (propertyPath.charAt(i)) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -