📄 scriptfactorypostprocessor.java
字号:
/*
* Copyright 2002-2006 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.scripting.support;
import net.sf.cglib.asm.Type;
import net.sf.cglib.core.Signature;
import net.sf.cglib.proxy.InterfaceMaker;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.aop.TargetSource;
import org.springframework.aop.framework.ProxyFactory;
import org.springframework.aop.support.DelegatingIntroductionInterceptor;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.PropertyValue;
import org.springframework.beans.factory.BeanDefinitionStoreException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessorAdapter;
import org.springframework.beans.factory.support.AbstractBeanFactory;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.core.Conventions;
import org.springframework.core.io.DefaultResourceLoader;
import org.springframework.core.io.ResourceLoader;
import org.springframework.scripting.ScriptFactory;
import org.springframework.scripting.ScriptSource;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;
/**
* {@link org.springframework.beans.factory.config.BeanPostProcessor} that
* handles {@link org.springframework.scripting.ScriptFactory} definitions,
* replacing each factory with the actual scripted Java object generated by it.
*
* <p>This is similar to the
* {@link org.springframework.beans.factory.FactoryBean} mechanism, but is
* specifically tailored for scripts and not built into Spring's core
* container itself but rather implemented as an extension.
*
* <p><b>NOTE:</b> The most important characteristic of this post-processor
* is that constructor arguments are applied to the
* {@link org.springframework.scripting.ScriptFactory} instance
* while bean property values are applied to the generated scripted object.
* Typically, constructor arguments include a script source locator and
* potentially script interfaces, while bean property values include
* references and config values to inject into the scripted object itself.
*
* <p>The followin {@link ScriptFactoryPostProcessor} will automatically be
* applied to the two
* {@link org.springframework.scripting.ScriptFactory} definitions below.
* At runtime, the actual scripted objects will be exposed for
* "bshMessenger" and "groovyMessenger", rather than the
* {@link org.springframework.scripting.ScriptFactory} instances. Both of
* those are supposed to be castable to the example's <code>Messenger</code>
* interfaces here.
*
* <pre class="code"><bean class="org.springframework.scripting.support.ScriptFactoryPostProcessor"/>
*
* <bean id="bshMessenger" class="org.springframework.scripting.bsh.BshScriptFactory">
* <constructor-arg value="classpath:mypackage/Messenger.bsh"/>
* <constructor-arg value="mypackage.Messenger"/>
* <property name="message" value="Hello World!"/>
* </bean>
*
* <bean id="groovyMessenger" class="org.springframework.scripting.bsh.GroovyScriptFactory">
* <constructor-arg value="classpath:mypackage/Messenger.groovy"/>
* <property name="message" value="Hello World!"/>
* </bean></pre>
*
* <p><b>NOTE:</b> Please note that the above excerpt from a Spring
* XML bean definition file uses just the <bean/>-style syntax
* (in an effort to illustrate using the {@link ScriptFactoryPostProcessor} itself).
* In reality, you would never create a <bean/> definition for a
* {@link ScriptFactoryPostProcessor} explicitly; rather you would import the
* tags from the <code>'lang'</code> namespace and simply create scripted
* beans using the tags in that namespace... as part of doing so, a
* {@link ScriptFactoryPostProcessor} will implicitly be created for you.
*
* <p>The Spring reference documentation contains numerous examples of using
* tags in the <code>'lang'</code> namespace; by way of an example, find below
* a Groovy-backed bean defined using the <code>'lang:groovy'</code> tag.
*
* <pre class="code"><?xml version="1.0" encoding="UTF-8"?>
*<beans xmlns="http://www.springframework.org/schema/beans"
* xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
* xmlns:lang="http://www.springframework.org/schema/lang">
*
* <!-- this is the bean definition for the Groovy-backed Messenger implementation -->
* <lang:groovy id="messenger" script-source="classpath:Messenger.groovy">
* <lang:property name="message" value="I Can Do The Frug" />
* </lang:groovy>
*
* <!-- an otherwise normal bean that will be injected by the Groovy-backed Messenger -->
* <bean id="bookingService" class="x.y.DefaultBookingService">
* <property name="messenger" ref="messenger" />
* </bean>
*
*</beans></pre>
*
* @author Juergen Hoeller
* @author Rob Harrop
* @author Rick Evans
* @since 2.0
*/
public class ScriptFactoryPostProcessor extends InstantiationAwareBeanPostProcessorAdapter
implements BeanFactoryAware, ResourceLoaderAware, DisposableBean {
/**
* The {@link org.springframework.core.io.Resource}-style prefix that denotes
* an inline script.
* <p>An inline script is a script that is defined right there in the (typically XML)
* configuration, as opposed to being defined in an external file.
*/
public static final String INLINE_SCRIPT_PREFIX = "inline:";
public static final String REFRESH_CHECK_DELAY_ATTRIBUTE =
Conventions.getQualifiedAttributeName(ScriptFactoryPostProcessor.class, "refreshCheckDelay");
private static final String SCRIPT_FACTORY_NAME_PREFIX = "scriptFactory.";
private static final String SCRIPTED_OBJECT_NAME_PREFIX = "scriptedObject.";
/** Logger available to subclasses */
protected final Log logger = LogFactory.getLog(getClass());
private long defaultRefreshCheckDelay = -1;
private AbstractBeanFactory beanFactory;
private ResourceLoader resourceLoader = new DefaultResourceLoader();
private DefaultListableBeanFactory scriptBeanFactory = new DefaultListableBeanFactory();
/**
* Set the delay between refresh checks, in milliseconds.
* Default is -1, indicating no refresh checks at all.
* <p>Note that an actual refresh will only happen when
* the {@link org.springframework.scripting.ScriptSource} indicates
* that it has been modified.
* @see org.springframework.scripting.ScriptSource#isModified()
*/
public void setDefaultRefreshCheckDelay(long defaultRefreshCheckDelay) {
this.defaultRefreshCheckDelay = defaultRefreshCheckDelay;
}
public void setBeanFactory(BeanFactory beanFactory) {
if (!(beanFactory instanceof AbstractBeanFactory)) {
throw new IllegalStateException(
"ScriptFactoryPostProcessor must run in AbstractBeanFactory, not in " + beanFactory);
}
this.beanFactory = (AbstractBeanFactory) beanFactory;
// Required so that references (up container hierarchies) are correctly resolved.
this.scriptBeanFactory.setParentBeanFactory(this.beanFactory);
// Required so that all BeanPostProcessors, Scopes, etc become available.
this.scriptBeanFactory.copyConfigurationFrom(this.beanFactory);
}
public void setResourceLoader(ResourceLoader resourceLoader) {
this.resourceLoader = resourceLoader;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -