0

我一直在从事一个在 tomcat 中运行良好的 Spring 项目,我们正在迁移到 JBoss,并希望在 JBoss 中使用数据源设置。该项目曾经使用以下xml ..

<beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" 
    > <beans:property name="driverClassName" value="${database.driver}" /> <beans:property 
    name="url" value="${database.url}" /> <beans:property name="username" value="${database.user}" 
    /> <beans:property name="password" value="${database.password}" /> <beans:property 
    name="initialSize" value="5" /> <beans:property name="maxActive" value="10" 
    /> </beans:bean>

但是现在我们正在迁移到 JBoss 并且管理员希望我们使用 JBoss 中的数据源设置,我正在尝试使用以下内容。

<jee:jndi-lookup id="dataSourcejndi" jndi-name="dataSourcejndi"
        lookup-on-startup="false" proxy-interface="javax.sql.DataSource"
        cache="true" resource-ref="true" />

    <beans:bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"
        lazy-init="true">
        <beans:property name="dataSource" ref="dataSourcejndi" />
    </beans:bean>

我们没有收到任何错误,但该项目将不再启动..

4

1 回答 1

0

你应该只需要第二个。我的设置是这样的:

<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
  <property name="jndiName" value="java:My_Data_Source" /> 
</bean>
于 2012-05-25T17:11:53.353 回答