Adding a Pre-constructed Bean to a Spring Application Context - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T01:36:20Zhttp://stackoverflow.com/feeds/question/496711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/496711/adding-a-pre-constructed-bean-to-a-spring-application-context1Adding a Pre-constructed Bean to a Spring Application ContextAdam Paynter2009-01-30T18:52:31Z2009-01-31T09:09:51Z
<p>I am writing a class that implements the following method:</p>
<pre><code>public void run(javax.sql.DataSource dataSource);
</code></pre>
<p>Within this method, I wish to construct a Spring application context using a configuration file similar to the following:</p>
<pre><code><bean id="dataSource" abstract="true" />
<bean id="dao" class="my.Dao">
<property name="dataSource" ref="dataSource" />
</bean>
</code></pre>
<p>Is it possible to force Spring to use the DataSource object passed to my method wherever the "dataSource" bean is referenced in the configuration file?</p>
http://stackoverflow.com/questions/496711/adding-a-pre-constructed-bean-to-a-spring-application-context/496737#4967370Answer by duffymo for Adding a Pre-constructed Bean to a Spring Application Contextduffymo2009-01-30T18:58:22Z2009-01-30T18:58:22Z<p>If you create an object by calling "new", it's not under the control of the Spring factory. </p>
<p>Why not have Spring inject the DataSource into the object instead of passing it into run()?</p>
http://stackoverflow.com/questions/496711/adding-a-pre-constructed-bean-to-a-spring-application-context/497104#4971041Answer by Patrick for Adding a Pre-constructed Bean to a Spring Application ContextPatrick2009-01-30T20:23:11Z2009-01-30T20:29:54Z<p>You can create a wrapper class for a <code>DataSource</code> that simply delegates to a contained <code>DataSource</code></p>
<pre><code>public class DataSourceWrapper implements DataSource {
DataSource dataSource;
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
@Override
public Connection getConnection() throws SQLException {
return dataSource.getConnection();
}
@Override
public Connection getConnection(String username, String password)
throws SQLException {
return dataSource.getConnection(username, password);
}
//delegate to all the other DataSource methods
}
</code></pre>
<p>Then in you Spring context file you declare <code>DataSourceWrapper</code> and wire it into all your beans. Then in your method you get a reference to DataSourceWrapper and set the wrapped DataSource to the one passed in to your method.</p>
<p>This all working is highly depended on what happens in your Spring context file when its being loaded. If a bean requires the DataSource to already be available when the context loads then you may have to write a <code>BeanFactoryPostProcessor</code> that alters the Spring context file as it loads, rather then doing things after the load (though perhaps a lazy-init could solve this issue).</p>
http://stackoverflow.com/questions/496711/adding-a-pre-constructed-bean-to-a-spring-application-context/497918#4979182Answer by Adam Paynter for Adding a Pre-constructed Bean to a Spring Application ContextAdam Paynter2009-01-31T01:05:33Z2009-01-31T09:09:51Z<p>I discovered two Spring interfaces can be used to implement what I need. The <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/BeanNameAware.html" rel="nofollow">BeanNameAware</a> interface allows Spring to tell an object its name within an application context by calling the <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/BeanNameAware.html#setBeanName(java.lang.String)" rel="nofollow">setBeanName(String)</a> method. The <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/FactoryBean.html" rel="nofollow">FactoryBean</a> interface tells Spring to not use the object itself, but rather the object returned when the <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/FactoryBean.html#getObject()" rel="nofollow">getObject()</a> method is invoked. Put them together and you get:</p>
<pre><code>public class PlaceholderBean implements BeanNameAware, FactoryBean {
public static Map<String, Object> beansByName = new HashMap<String, Object>();
private String beanName;
@Override
public void setBeanName(String beanName) {
this.beanName = beanName;
}
@Override
public Object getObject() {
return beansByName.get(beanName);
}
@Override
public Class<?> getObjectType() {
return beansByName.get(beanName).getClass();
}
@Override
public boolean isSingleton() {
return true;
}
}
</code></pre>
<p>The bean definition is now reduced to:</p>
<pre><code><bean id="dataSource" class="PlaceholderBean" />
</code></pre>
<p>The placeholder receives its value before creating the application context.</p>
<pre><code>public void run(DataSource externalDataSource) {
PlaceholderBean.beansByName.put("dataSource", externalDataSource);
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
assert externalDataSource == context.getBean("dataSource");
}
</code></pre>
<p>Things appear to be working successfully!</p>