我想通过context / JNDI为我正在开发的web-app提供配置。我目前正在使用捆绑的Glassfish服务器在Netbeans 8.1中进行开发,尽管我的解决方案应该与容器无关。
我有获取数据库连接的工作设置,但我对自定义资源类型感到难过。
在web.xml中:
<resource-ref>
<res-ref-name>SHOWmail/search</res-ref-name>
<res-type>com.example.SearchProvider</res-type>
<res-auth>Container</res-auth>
</resource-ref>
在glassfish-resources.xml中:
<custom-resource jndi-name="SHOWmail/search" res-type="com.example.SearchProvider" factory-class="com.example.SearchProviderFactory">
<property name="name" value="value"/>
</custom-resource>
在代码中:
initContext = new InitialContext();
envContext = (Context) initContext.lookup("java:comp/env");
search = (SearchProvider)envContext.lookup("SHOWmail/search");
我可靠得到javax.naming.NameNotFoundException: No object bound to name java:SHOWmail/search
。我的工厂和班级没有被触及(如果需要,将添加)。
指出我出错的地方非常感谢。
答案 0 :(得分:0)
似乎我误解了netbeans / glassfish组合中不同的JNDI名称空间。
解决方案是在java:app
而不是java:comp/env
下查看;这会搜索WEB-INF / glassfish-resources.xml。
的web.xml
<resource-env-ref>
<resource-env-ref-name>SHOWmail/search</resource-env-ref-name>
<resource-env-ref-type>com.example.SearchProviderFactory</resource-env-ref-type>
</resource-env-ref>
的glassfish-resources.xml中
<custom-resource jndi-name="java:app/SHOWmail/search" res-type="com.example.ElasticSearchProvider" factory-class="com.example.SearchProviderFactory">
</custom-resource>