gpt4 book ai didi

java - 为什么JNDI资源在Tomcat中只能被调用一次?

转载 作者:行者123 更新时间:2023-11-28 22:41:13 28 4
gpt4 key购买 nike

我在学习的时候how to use JNDI resources in Tomcat 7 ,一个定制的bean工厂已经制作完成,叫做MyBeanFactory。它为我的网络应用程序提供了外部资源。一开始,我们假设它提供了当前系统时间戳。

但是,我意识到 MyBeanFactory 在第一次请求时只被调用了一次。似乎java bean MyBean 在第一次执行后已经存储在Tomcat 中。然后 MyBean 被每个请求重用。无论我何时在浏览器中重录 URL,响应总是显示与第一个相同的时间戳。以下是可能有帮助的元素列表:

  • MyBean:MyBeanFactory
  • 提供的bean
  • MyBeanFactory:实现javax.naming.spi.ObjectFactory
  • 的工厂
  • context.xml:资源的上下文描述符,位于META-INF文件夹中
  • web.xml:部署描述符
  • MyAction:http servlet
  • 控制台

有人能告诉我为什么 MyBeanFactory 只被调用一次吗?是否可以更改此功能?因为我需要修改工厂与服务器中的另一个进程建立套接字。参见 How to serve a socket from a Java EE application?


MyBean

public class MyBean {

private String foo = "Default Foo";
private long bar = 0;

public String getFoo() { return (this.foo); }
public void setFoo(String foo) { this.foo = foo; }
public long getBar() { return (this.bar); }
public void setBar(long bar) { this.bar = bar; }

}

MyBeanFactory

public class MyBeanFactory implements ObjectFactory {

@Override
public Object getObjectInstance(Object obj, Name name, Context nameCtx,
Hashtable<?, ?> environment) throws NamingException {
System.out.println("MyBeanFactory starts");
MyBean bean = new MyBean();
bean.setBar(System.currentTimeMillis());
// Return the customized instance
return bean;

}
}

context.xml

<?xml version="1.0" encoding="UTF-8"?>
<Context
path="/jndi"
reloadable="true"
cachingAllowed="false"
antiResourceLocking="true">

<Resource
name="bean/MyBeanFactory"
auth="Container"
type="com.mycompany.MyBean"
factory="com.mycompany.MyBeanFactory"
bar="23"/>

</Context>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID"
version="3.1">

<display-name>jndi</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>com.mycompany.MyAction</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>
<!--
Apache Tomcat 7: JNDI Resources HOW-TO
https://tomcat.apache.org/tomcat-7.0-doc/jndi-resources-howto.html
-->
<resource-env-ref>
<description>
Object factory for MyBean instances.
</description>
<resource-env-ref-name>
bean/MyBeanFactory
</resource-env-ref-name>
<resource-env-ref-type>
com.mycompany.MyBean
</resource-env-ref-type>
</resource-env-ref>
</web-app>

我的行动

public class MyAction extends HttpServlet {

// ...

protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
System.out.println("doGet");
response.getWriter()
.append("Hello coming from ")
.append(request.getRequestURI());

Context initCtx = null;
try {
System.out.println("initCtx");
initCtx = new InitialContext();
} catch (NamingException e) {
e.printStackTrace();
}

Context envCtx = null;
try {
System.out.println("envCtx");
envCtx = (Context) initCtx.lookup("java:comp/env");
} catch (NamingException e) {
e.printStackTrace();
}

MyBean bean;
try {
System.out.println("lookup");
bean = (MyBean) envCtx.lookup("bean/MyBeanFactory");
response.getWriter()
.append("foo = " + bean.getFoo() + ", ")
.append("bar = " + bean.getBar() + ";");
} catch (NamingException e) {
e.printStackTrace();
}
System.out.println("------");
}
}

控制台

Dec 28, 2015 7:41:03 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 412 ms
doGet
initCtx
envCtx
lookup
MyBeanFactory starts // called only once
------
doGet
initCtx
envCtx
lookup
------
doGet
initCtx
envCtx
lookup
------

最佳答案

<Resource>您呈现的元素具有超出 documented by Tomcat 8 的属性,特别是“工厂”和“酒吧”。然而,文档中可能错误地省略了前一个属性,因为一些示例使用了它。

无论如何,我想提请您注意“单例”属性。当该属性的值为 true 时(默认),资源被视为单例,由上下文维护并在所有用户之间共享的单个实例。这似乎是您描述的行为。如果将该属性添加到声明中,其值为 false ,那么该资源的每次查找都应该检索一个新实例。

关于java - 为什么JNDI资源在Tomcat中只能被调用一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34499922/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com