zoukankan      html  css  js  c++  java
  • Spring 使用AOP导致IOC注入失败

    前几天把系统重构了,服务层针对前后台分别提供相应的接口,但在配置注入的时候出现如下错误:

    java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy0] to required type [com.test.dao.UserDAO] for property 'dao': no matching editors or conversion strategy found

    Spring配置如下:

    <!-- 事务通知 -->
        <tx:advice id="txAdvice" transaction-manager="transactionManager">
            <tx:attributes>
                <tx:method name="*" propagation="REQUIRED" />
                <!-- 
                <tx:method name="add*" propagation="REQUIRED"
                    rollback-for="Exception,SmoException,BmoException,DaoException" />
                <tx:method name="del*" propagation="REQUIRED"
                    rollback-for="Exception,SmoException,BmoException,DaoException" />
                <tx:method name="upd*" propagation="REQUIRED"
                    rollback-for="Exception,SmoException,BmoException,DaoException" />
                <tx:method name="*" propagation="SUPPORTS" read-only="true" />
                 -->
            </tx:attributes>
        </tx:advice>
        <!--
            Spring AOP config 解释一下(* com.evan.crm.service.*.*(..))中几个通配符的含义: 
            第一个 *    —— 通配 任意返回值类型 
            第二个 * —— 通配 包com.evan.crm.service下的任意class 
            第三个 * —— 通配 包com.evan.crm.service下的任意class的任意方法 
            第四个 .. —— 通配 方法可以有0个或多个参数
        -->
        <aop:config>
            <aop:pointcut id="servicesPointcut"
                expression="execution(* com.test..*.*(..))" />
            <aop:advisor advice-ref="txAdvice" pointcut-ref="servicesPointcut" />
        </aop:config>

    上面的英文意思说无法将一个实现 com.test.dao.UserDAO 接口的代理注入给 dao

    之所以会出现这个问题是:因为我配置了aop拦截了dao对象,Spring依照dao对象生成其接口的代理,当把这接口的代理塞给dao对象出错了

    解决方法:AOP配置的拦截 避开dao对象

    更改Spring的AOP配置:

    <!-- 事务通知 -->
        <tx:advice id="txAdvice" transaction-manager="transactionManager">
            <tx:attributes>
                <tx:method name="*" propagation="REQUIRED" />
                <!-- 
                <tx:method name="add*" propagation="REQUIRED"
                    rollback-for="Exception,SmoException,BmoException,DaoException" />
                <tx:method name="del*" propagation="REQUIRED"
                    rollback-for="Exception,SmoException,BmoException,DaoException" />
                <tx:method name="upd*" propagation="REQUIRED"
                    rollback-for="Exception,SmoException,BmoException,DaoException" />
                <tx:method name="*" propagation="SUPPORTS" read-only="true" />
                 -->
            </tx:attributes>
        </tx:advice>
        <!--
            Spring AOP config 解释一下(* com.evan.crm.service.*.*(..))中几个通配符的含义: 
            第一个 *    —— 通配 任意返回值类型 
            第二个 * —— 通配 包com.evan.crm.service下的任意class 
            第三个 * —— 通配 包com.evan.crm.service下的任意class的任意方法 
            第四个 .. —— 通配 方法可以有0个或多个参数
        -->
        <aop:config>
            <aop:pointcut id="servicesPointcut"
                expression="execution(* com.test.main.TestFascade.*(..))" />
            <aop:advisor advice-ref="txAdvice" pointcut-ref="servicesPointcut" />
        </aop:config>
  • 相关阅读:
    nginx入门与实战
    python开发之virtualenv与virtualenvwrapper讲解
    Linux下的python3,virtualenv,Mysql、nginx、redis安装配置
    Linux系统基础优化及常用命令
    vim与程序员
    Shell基本命令
    Linux之文档与目录结构
    远程连接Linux
    oracle 根据时间戳查询date类型sql
    oracle 锁用户
  • 原文地址:https://www.cnblogs.com/macula/p/3070688.html
Copyright © 2011-2022 走看看