我正在尝试在 JBoss 7.1 上的 GateIn 3.2.0 中部署的 portlet 中获取数据源。
首先,我在standalone.xml 中创建了数据源
<datasource jta="true" jndi-name="java:jboss/datasources/ccr" pool-name="ccr-pool" enabled="true" use-java-context="false" use-ccm="true">
<connection-url>jdbc:mysql://localhost:42006/contentrepository</connection-url>
<driver>com.mysql</driver>
<security>
<user-name>node</user-name>
</security>
<statement>
<prepared-statement-cache-size>100</prepared-statement-cache-size>
<share-prepared-statements>true</share-prepared-statements>
</statement>
</datasource>
我还添加了驱动程序和驱动程序模块。
在我的 portlet 中,我尝试使用
dataSource = (DataSource) new InitialContext().lookup("java:jboss/datasources/ccr");
但我只得到一个 javax.naming.NameNotFoundException: Name 'jboss' not found in context ''。
我也试着用
dataSource = (DataSource) new InitialContext().lookup("java:comp/env/datasources/ccr");
并将其映射到 web.xml 和 jboss-web.xml 中的以下条目
网页.xml:
<resource-ref>
<description>MySQL DS</description>
<res-ref-name>datasources/ccr</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
jboss-web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<resource-ref>
<res-ref-name>datasources/ccr</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<jndi-name>java:jboss/datasources/ccr</jndi-name>
</resource-ref>
</jboss-web>
然后我得到 javax.naming.NameNotFoundException: Name 'comp' not found in context ''。
我错过了什么?是否有一些安全设置阻止我的应用程序获取数据源?
奇怪的是,当使用 servlet 时,我可以在同一个 web 应用程序中获取数据源,但只能在 doGet/doPost 方法中,而不是在 init() 中。