要在Spring中配置JNDI數據源,你可以按照以下步驟進行操作:
<resource-ref>
<description>My JNDI DataSource</description>
<res-ref-name>jdbc/myDataSource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<jee:jndi-lookup id="dataSource" jndi-name="jdbc/myDataSource" expected-type="javax.sql.DataSource"/>
@Autowired
private DataSource dataSource;
現在你可以在Spring中使用JNDI數據源進行數據庫訪問了。