Many JMS providers store a reference to their connection factory in a JNDI service to ease retrieval. Fuse ESB allows developers to choose between a straight JNDI look-up and using Spring JNDI templates. Which mechanism you choose will depend on your environment.
Spring provides a built-in JNDI look-up feature that can be used to retrieve the connection factory for a JMS provider. To use the built-in JNDI look-up do the following:
Add the following namespace declaration to your
beanselement in your service unit's configuration.xmlns:jee="http://www.springframework.org/schema/jee"
Add a
jee:jndi-lookupelement to your service unit's configuration.The
jee:jndi-lookupelement has two attributes. They are described in Table 2.4.Add a
jee:environmentchild element to thejee:jndi-lookupelement.The
jee:environmentelement contains a collection of Java properties that are used to access the JNDI provider. These properties will be provided by your JNDI provider's documentation.
Example 2.4 shows a configuration snippet for using the JNDI look-up with WebLogic.
Example 2.4. Getting the WebLogic Connection Factory Using Spring's JEE JNDI Look-up
<beans xmlns:jee="http://www.springframework.org/schema/jee" ... >
...
<jee:jndi-lookup id="connectionFactory" jndi-name="weblogic.jms.XAConnectionFactory">
<jee:environment>
java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
java.naming.provider.url=t3://localhost:7001
</jee:environment>
</jee:jndi-lookup>
...
</beans>Another approach to using JNDI to get a reference to a JMS connection factory is to use the Spring
framework's JndiTemplate bean. Using this approach, you configure an instance of the
JndiTemple bean and then use the bean to perform all of your JNDI look-ups using a
JndiObjectFactoryBean bean.
To get the JMS connection factory using a Spring JNDI template do the following:
Add a
beanelement to your configuration for the JNDI template.Set the
beanelement'sidattribute to a unique identifier.Set the
beanelement'sclassattribute toorg.springframework.jndi.JndiTemplate.Add a
propertychild element to thebeanelement.The
propertyelement will contain the properties for accessing the JNDI provider.Set the
propertyelement'snameattribute toenvironment.Add a
propschild to thepropertyelement.Add a
propchild element to thepropselement for each Java property needed to connect to the JNDI provider.A
propelement has a single attribute calledkeywhose value is the name of the Java property being set. The value of the element is the value of the Java property being set. Example 2.5 shows apropelement for setting the java.naming.factory.initial property.Example 2.5. Setting a Java Property
<prop key="java.naming.factory.initial"> com.sun.jndi.fscontext.RefFSContextFactory </prop>
![[Note]](imagesdb/note.gif)
Note The properties you need to set will be determined by your JNDI provider. Check its documentation.
Add a
beanelement to your configuration to retrieve the JMS connection factory using the JNDI template.Set the
beanelement'sidattribute to a unique identifier.Set the
beanelement'sclassattribute toorg.springframework.jndi.JndiObjectFactoryBean.Add a
propertychild element to thebeanelement.This
propertyelement loads the JNDI template to be used for the look-up. You must set itsnameattribute tojndiTemplate. The value of itsrefattribute is taken from thenameattribute of thebeanelement that configured the JNDI template.Add a second
propertychild element to thebeanelement.This
propertyelement specifies the JNDI name of the connection factory. You must set itsnameattribute tojndiTemplate.Add a
valuechild element to thepropertyelement.The value of the element is the JNDI name of the connection factory.
Example 2.6 shows a configuration fragment for retrieving the WebSphere MQ connection factory using Sun's reference JNDI implementation.
Example 2.6. Using a JNDI Template to Look Up a Connection Factory
<beans ... >
...
<bean id="jndiTemplate"
class="org.springframework.jndi.JndiTemplate">
<property name="environment">
<props>
<prop key="java.naming.factory.initial">
com.sun.jndi.fscontext.RefFSContextFactory
</prop>
<prop key="java.naming.provider.url">
file:/tmp/
</prop>
</props>
</property>
</bean>
<bean id="connectionFactory"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiTemplate"
ref="jndiTemplate" />
<property name="jndiName">
<value>MQConnFactory</value>
</property>
</bean>
...
</beans>







