2
我是Spring的新手,並試圖理解web.xml文件。 我創建使用STS一個新的Spring MVC的Maven項目,春季的application-config.xml vs mvc-config.xml
我的應用程序-config.xml中VS MVC-config.xml文件之間有點困惑...
MVC-config.xml中包含的servlet映射但什麼樣的信息呢的應用配置文件包含..
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/application-config.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--
- Servlet that dispatches request to registered handlers (Controller implementations).
-->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/mvc-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
是否有可能在其他類中的mvc-config.xml中定義的引用/自動裝配到/定義的bean?我試圖注入,在@Component類mvc-config.xm中定義的RequestMappingHandlerAdapter,它不工作,有什麼想法? – pinkpanther
@pinkpanther只是問另一個問題,並提供一些更多的細節。 –