我正在尝试使用 GlobalNamingResources 创建一个将由 2 个不同的 webapps 使用的全局 bean(当然在同一个 tomcat 上)。
我的问题是,当我尝试为从 JNDI 获得的类设置新数据时,我得到了 NullPointerException。
我点击了以下链接,但我仍然不确定我做错了什么:http: //tomcat.apache.org/tomcat-7.0-doc/config/globalresources.html
这是使我的 servlet 崩溃的行:
single.setText("TEXT");
这是我的测试 servlet:
@WebServlet("/JNDIServlet")
public class JNDIServlet extends HttpServlet {
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try {
Thread.sleep(4000);
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
SingletonClass single = (SingletonClass) envCtx.lookup("TestMe");
single.setText("TEXT");
initCtx.rebind("TestMe", single);
response.getWriter().println(envCtx.lookup("TestMe").toString());
} catch (NamingException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
我的“SingletonClass”只是一个pojo:
package com.jndi.test;
public class SingletonClass {
private String text;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public SingletonClass() {
}
}
这是我的 web.xml 文件:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>JNDIServletTest</display-name>
<resource-ref>
<res-ref-name>TestMe</res-ref-name>
<res-type>com.jndi.test.SingletonClass</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
最后,来自 tomcat 的 server.xml 文件中的相关部分:
<GlobalNamingResources>
<Resource name="TestMe" auth="Container"
type="com.jndi.test.SingletonClass"
factory="org.apache.naming.factory.BeanFactory"/>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
</GlobalNamingResources>
另外,我在我的 tomcat 的 context.xml 中添加了所需的资源链接:
<ResourceLink name="TestMe" global="TestMe" type="com.jndi.test.SingletonClass"/>
谁能给我一些关于我做错了什么的见解?
非常感谢 :)