为什么<init-param>
节点中必须有<servlet>
<param-name>
“contextConfigLocation”?因为如果对所有<init-param>
组进行评论,那么项目将无法加载?
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Archetype Created Web Application</display-name>
<!-- Spring MVC dispatcher servlet -->
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value></param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Loads Spring configurations from files -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-mvc.xml,
/WEB-INF/spring-security.xml,
/WEB-INF/hibernate-context.xml
</param-value>
</context-param>
<!-- Spring Security filter -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
答案 0 :(得分:0)
弹簧配置文件的正确位置是什么?
您可以通过servlet类的<context-param>
或<init-param>
加载spring配置文件。但是,如下所述存在差异:
如果使用<context-param>
加载,那么依赖项(spring bean)将可用于整个应用程序(适用于所有servlet)。这将用于加载整个应用程序中的公共依赖项(如服务,DAO等)。
但是,如果使用<init-param>
DispatcherServlet
进行加载,那么依赖项(spring bean)将仅作为子上下文用于DispatcherServlet
。因此,如果您的应用程序有多个入口端点(如Restlet或Apache CXFServlet等),则可以为每个servlet(入口点)维护一个子上下文。每个子上下文拥有/加载相应Web层的特定依赖项。
您可以查看以下来自Spring WebApplicationContext
API的说明:
与通用应用程序上下文一样,Web应用程序上下文也是如此 分层。每个应用程序都有一个根上下文,而 应用程序中的每个servlet(包括一个调度程序servlet) MVC框架)有自己的子上下文。