Spring和SpringMVC配置文件中注解和父子容器

本文详细解析了Spring与SpringMVC框架的整合过程,包括不同版本的映射器和适配器配置,注解驱动的使用,以及解决父子容器问题的方法。深入探讨了<context:component-scan>和<mvc:annotation-driven>注解的作用。
摘要由CSDN通过智能技术生成

看一个项目的配置文件时,发现一个有意思的事,就是spring和springmvc的配置文件都有一个共同的注解:<context:component-scan/>然后对配置文件中其他的注解作用也有点懵了,索性研究一下,写下来:

1、SpringMVC中有映射器和适配器分为注解版和非注解版

非注解版:

<!-- 映射器1 -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/> 
<!-- 映射器2 -->
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">


<!-- 适配器1 要求编写的处理器action实现controller接口-->
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
<!-- 适配器2 要求编写的处理器action实现HttpRequestHandler接口-->
<bean class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter"/>

注解版:

    3.1版本之前:

<!-- Spring3.1之前的注解映射器 HandlerMapping --> 
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>  
<!-- Spring3.1之前的注解适配器 HandlerAdapter --> 
<bean  class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/> 

    3.1版本以及之后:

<!--Spring3.1开始的注解映射器 HandlerMapping -->  
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>  
<!--Spring3.1开始的注解适配器 HandlerAdapter -->  
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>  

2、如上写法还是太麻烦,干脆用一个注解

<mvc:annotation-driven />

会自动注入映射器和适配器,详情戳这里

3、单单有这么一个注解,还是无法访问我们写的方法。此时需要加入另外一个注解

<context:component-scan base-package="com.simon"/>

该注解的功能是扫描配置的base-package包下的所有使用了@Component注解的类,然后注册到springmvc容器中,包括@Controler,@Service@Component

4、我们经常还会发现另外一个注解

<context:annotation-config/>

会启用@Required、@Autowired、 @PostConstruct、@PersistenceContext、@Resource、@PreDestroy等注解。

 

但是如果我们配置了步骤3中的注解,就不需要配置步骤4了。因为已经默认包含并开启:

 

 

5、spring和springmvc结合后父子容器问题

    spring配置文件如下,负责扫描注册所有的bean

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
  		http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/aop
 		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 		http://www.springframework.org/schema/mvc
    	http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:component-scan base-package="com.simon"/>
</beans>

springmvc配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
  		http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/aop
 		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 		http://www.springframework.org/schema/mvc
    	http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--@RequestMapping、@RequestBody、@ResponseBody-->
    <mvc:annotation-driven />

    <!--@Controller,@Service,@Respository,@Component。-->
    <!--<context:component-scan base-package="com.simon"/>-->

    <!--@Required、@Autowired、 @PostConstruct、@PersistenceContext、@Resource、@PreDestroy等注解-->
    <!--<context:annotation-config/>-->

    <!-- 试图解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

</beans>

之后启动服务,访问url地址,404。之所以这样是因为springmvc无法找到处理器。问题大概出在这里:

 

 

 

 

 

 

 

 

 

 

解决办法一:

    springmvc配置文件中增加下面的代码:

<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
	<property name="detectHandlerMethodsInAncestorContexts" value="true"/>
</bean>

 解决办法二(一般这样):

    spring扫描controller以外的注解:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
  		http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/aop
 		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 		http://www.springframework.org/schema/mvc
    	http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:component-scan base-package="com.simon">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>
</beans>

    springmvc只扫描controller:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
  		http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/aop
 		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 		http://www.springframework.org/schema/mvc
    	http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--@RequestMapping、@RequestBody、@ResponseBody-->
    <mvc:annotation-driven />

    <!--@Controller,@Service,@Respository,@Component。-->
    <context:component-scan base-package="com.simon.controller"/>

    <!--@Required、@Autowired、 @PostConstruct、@PersistenceContext、@Resource、@PreDestroy等注解-->
    <!--<context:annotation-config/>-->

    <!--<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
        <property name="detectHandlerMethodsInAncestorContexts" value="true"/>
    </bean>-->

    <!-- 试图解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

 

转载于:https://my.oschina.net/imlim/blog/1976068

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值