当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:15:00  来源:本站整理

Spring的无接口代理实现AOP[Java编程]

赞助商链接



  本文“Spring的无接口代理实现AOP[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

package com.rx.spring.cglib;
public class UserManagerImpl { // implements UserManager {
  public void addUser(String username, String password) {
    System.out.println("-------UserManagerImpl.addUser()----------");
  }
  public void deleteUser(int id) {
    System.out.println("-------UserManagerImpl.deleteUser()----------");
  }
}
package com.rx.spring.cglib;
import org.aspectj.lang.JoinPoint;
public class SecurityHandler {
  private void checkSecurity(JoinPoint joinPoint) {
    Object[] args = joinPoint.getArgs();
    for (int i=0; i<args.length; i++) {
      System.out.println(args[i]);
    }
    System.out.println(joinPoint.getSignature().getName());
    System.out.println("----------checkSecurity()---------------");
  }
}
package com.rx.spring.cglib;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Client {
  public static void main(String[] args) {
    BeanFactory factory = new ClassPathXmlApplicationContext("applicationContextCglib.xml");
    UserManagerImpl userManager = (UserManagerImpl)factory.getBean("userManager");
    userManager.addUser("abc", "123");
    System.out.println("testing");
    userManager.deleteUser(1);
  }
}
<?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"
     xmlns:tx="http://www.springframework.org/schema/tx"
     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
      http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
      http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
  <!--
  <aop:aspectj-autoproxy proxy-target-class="true"/>
   -->
  <bean id="securityHandler" class="com.rx.spring.cglib.SecurityHandler"/>
  <bean id="userManager" class="com.rx.spring.cglib.UserManagerImpl"/>
  <aop:config>
    <aop:aspect id="security" ref="securityHandler">
      <aop:pointcut id="allAddMethod" expression="execution(* com.rx.spring.cglib.UserManagerImpl.add*(..))"/>
      <aop:before method="checkSecurity" pointcut-ref="allAddMethod"/>
    </aop:aspect>
  </aop:config>
</beans>


  以上是“Spring的无接口代理实现AOP[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 在Ubuntu管理iPhone/iPod SpringBoard图标
  • Visual C++ sprintf()函数用法
  • 发扬EJB、Spring思惟将组件化举行到底
  • spring在MVC层办理JPA的缓迟加载问题
  • 用spring简单实现发送邮件
  • 用Spring framework实现按时器功效
  • 关于Struts和Spring两种MVC框架的比较
  • Spring自动装配的学习
  • Spring事件配置的五种办法
  • Spring编程入门十大问题解答
  • Hibernate+Spring+Struts扩大Struts
  • J2EE新手入门之"Spring"名词注释
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .