eomn 2010-05-30
欢迎大家访问我的个人网站 萌萌的IT人,后续所有的文章都会在此发布
--------------------------------------------------------------------------------------------
先在websphere和 weblogic里配置一个数据源,jndi名叫offsetJndi
spring里配置数据源 这种配置方法 websphere weblogic通用
<beans> <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName"> <value>offsetJndi</value> </property>
tomcat中使用如下方式
<beans> <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName"> <value>java:comp/env/offsetJndi</value> </property>