ServletContext 是 Servlet 之间共享资源的首选方式吗?
当我寻找在 Servlet 之间共享资源(例如数据源)的方法时,大多数时候建议使用 ServletContextListener。这是共享资源的标准方式吗?或者还有其他选择吗?
When I was looking for ways to share resources (e.g. a DataSource) between Servlets, most of the time using a ServletContextListener is proposed. Is this the standard way for sharing resources? Or are there alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的要求。但是,您可以创建一个存储库,例如一个单例对象来保存您的资源,该对象在整个 JVM 中只存在一个实例。此外,由于并发问题,使用 servletcontext 获取资源实例(例如数据源)并不是一个好的做法。对于数据资源,我将使用 JNDI 资源并让容器(tomcat 或应用程序服务器)管理这些资源,就像任何其他服务对象(例如 DAO)一样。 Spring 通过所有服务 bean 所在的应用程序上下文来解决这些问题。您需要在此上下文中将服务对象定义为 bean,并且可以将这些对象注入(请参阅依赖注入 - CDI)到控制器、拦截器等需要不同策略的地方。
It depends on your requirement. You can, however, create a repository, for example a singleton object to keep your resources, of which object just one instance exists in whole JVM. Moreover, it's not a good practice to use servletcontext to get instances of resources for example data sources because of concurrency issues. For data resources i would use JNDI resources and let container (tomcat or an application server) manage these resources, like any other service objects for instance DAOs. Spring solves these problems with an application context in which all service beans live. you need to define your service objects as beans in this context and these can be injected (see dependency injection - CDI) in controllers, interceptors etc. where they are needed with different strategies.