SCA相关文档

SCA相关文档
<bean id="myJndiResource" class="org.springframework.jndi.JndiObjectFactoryBean">
  <property name="jndiName" value="jdbc/myJndiResource"/>
  <property name="lookupOnStartup" value="true"/>
  <property name="cache" value="true"/>
  <property name="jndiTemplate" ref="wasJndiTemplate"/>
</bean>

<bean id="wasJndiTemplate" class="org.springframework.jndi.JndiTemplate">
  <property name="environment">
    <props>
      <prop key="java.naming.factory.initial">com.ibm.websphere.naming.WsnInitialContextFactory</prop>
    </props>
  </property>
</bean>

http://publib.boulder.ibm.com/infocenter/wasinfo/v8r0/index.jsp?topic=%2Fcom.ibm.websphere.nd.multiplatform.doc%2Finfo%2Fae%2Fae%2Ftsca_spring_impl.html

猜你喜欢

转载自wg84cn.iteye.com/blog/1109940
SCA