如何在Spring中使用WebLogic 12.2.1提供的JNDI DataSource?

时间:2016-01-25 11:57:15

标签: java spring jndi weblogic12c

我使用以下值创建了JNDI连接:

我选择了Generic Data Source选项

名称:jdbc / sampleDataSource

JNDI名称:jdbc / sampleDataSource

Spring配置文件:

<jee:jndi-lookup id="dataSource" jndi-name="jdbc/sampleDataSource" />

我发现错误。

Error An error occurred during activation of changes, please see the log for details.
Error javax.naming.NameNotFoundException: While trying to lookup 'jdbc.sampleDataSource' didn't find subcontext 'jdbc'. Resolved ''; remaining name 'jdbc/sampleDataSource'
Error While trying to lookup 'jdbc.sampleDataSource' didn't find subcontext 'jdbc'. Resolved ''; remaining name 'jdbc/sampleDataSource' 

我无法解决它。 我如何在Spring 4中配置。 任何添加jar文件都是必需的。请帮忙。

1 个答案:

答案 0 :(得分:5)

有时,如果您忘记Target定义的datasource到特定服务器,就会发生这种情况。您可以在Weblogic的管理服务器中找到它:

enter image description here

然后在Targets标签中:

enter image description here

你应该选择目标。

如果这不是问题,您可以尝试在datasource中获取applicationContext.xml

<bean id="dataSource" name="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
    <property name="jndiName" value="jdbc/mcdsDS"/>
    <property name="resourceRef" value="true"/>
</bean>

并在需要datasource的任何地方使用 dataSource 参考。

希望这会有所帮助。