要在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数据源进行数据库访问了。