黑马程序员技术交流社区

标题: applicationContext.xml [打印本页]

作者: 起名very难    时间: 2019-9-5 20:43
标题: applicationContext.xml
<?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:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">


    <!-- bean definitions here -->
    <bean id="acountServiceimpl" class="com.itheima.services.impl.AcountServiceimpl"></bean>
    <bean  id="logger" class="com.itheima.advice.Logger">

    </bean>

    <aop:config>
     
        <aop:aspect id="logAdvice" ref="logger">
     
            <aop:before method="printLog" pointcut="execution(public void com.itheima.services.impl.AcountServiceimpl.update())"></aop:before>
        </aop:aspect>
    </aop:config>

</beans>
作者: 晨大喵    时间: 2019-9-10 16:33
欢迎欢迎,加油呐~
作者: 小影姐姐    时间: 2019-9-19 14:18

作者: 小影姐姐    时间: 2019-9-19 14:19

作者: 魔都黑马少年梦    时间: 2019-9-19 17:01
哇塞,棒
作者: 秒睡怪人    时间: 2019-9-19 17:06
加油
作者: xiaowang66    时间: 2019-9-26 21:44
加油加油




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2