根上下文/应用上下文& Servlet上下文

时间:2013-10-03 12:07:16

标签: java-ee

我在理解j2ee中的上下文类型方面有点困惑。

请解释Root Context / Application Context& Spring Web应用程序中的Servlet上下文。

即。 Root Context由ContextLoaderListener

创建

2 个答案:

答案 0 :(得分:4)


应用程序上下文/服务器上下文


ContextLoaderListener在Web应用程序(即特定WAR)中创建的上下文包含特定于 WEB APPLICATION 的单一bean。

<param-name>contextConfigLocation</param-name>

<param-value>/WEB-INF/my-application-servlet.xml</param-value>


家长背景/根本背景


locatorFactorySelector或ParentContextKey创建的上下文为EAR中的所有 WEB APPLICATIONS 创建包含单例bean的上下文。 (即EAR内的所有WARS)

<param-name>locatorFactorySelector</param-name>

<param-value>classpath:common-beans.xml</param-value>

<param-name>parentContextKey</param-name>

<param-value>commonContext</param-value>

答案 1 :(得分:1)

对于Web应用程序,它们都是相同的。

  • ServletContext可以在整个Web应用程序中使用。
  • applicationContext变量在jsp中可用于访问ServletContext