这就是他们在 ejb-jar.xml 中声明资源引用的方式:
<enterprise-beans>
<session>
<ejb-name>ResourceBean</ejb-name>
<resource-ref>
<res-ref-name>jdbc/employee</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
</resource-ref>
</session>
</enterprise-beans>
在此链接: http: //javahowto.blogspot.ca/2006/06/5-ways-to-get-resources-in-ejb-3.html 现在,如果我有另一个需要使用相同资源的会话 bean- ref,我是否必须在第二个 EJB 中再次声明它?或者有解决方法吗?