真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java如何實(shí)現(xiàn)AOP功能的封裝與配置的小框架

這篇文章主要介紹了Java如何實(shí)現(xiàn)AOP功能的封裝與配置的小框架,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括迎江網(wǎng)站建設(shè)、迎江網(wǎng)站制作、迎江網(wǎng)頁制作以及迎江網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,迎江網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到迎江省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

設(shè)計(jì)

根據(jù)配置文件的鍵xxx對(duì)應(yīng)的值(類全名)創(chuàng)建相應(yīng)類的對(duì)象。

當(dāng)且僅當(dāng)xxx對(duì)應(yīng)的值為com.iot.proxy.aopframework.ProxyFactoryBean時(shí),則生成相應(yīng)的動(dòng)態(tài)代理類對(duì)象。代理對(duì)象的目標(biāo)類和通知實(shí)現(xiàn)類分別由xxx.targetxxx.advice配置

配置文件

config.propertiest位于aopframework包下

  • xxx代表要加載的類

  • xxx.advice代表通知接口的某個(gè)實(shí)現(xiàn)類

  • xxx.target代表委托類

#xxx=java.util.ArrayList
xxx=com.iot.proxy.aopframework.ProxyFactoryBean
xxx.advice=com.iot.proxy.MyAdvice
xxx.target=java.util.ArrayList

包:com.iot.proxy.aopframework,有如下幾個(gè)類/接口:

  • BeanFactory,用于讀取配置文件,根據(jù)配置創(chuàng)建相應(yīng)的對(duì)象

  • ProxyFactoryBean,用于生成代理對(duì)象,含有兩個(gè)私有屬性:目標(biāo)和通知

  • Advice,通知接口,用于把切面的代碼以對(duì)象的形式傳遞給InvocationHandler的的invoke方法

  • MyAdvice,Advice接口的一個(gè)實(shí)現(xiàn)類,打印執(zhí)行方法前的時(shí)間及執(zhí)行耗時(shí)

  • AopFrameWorkTest,測(cè)試效果

代碼

Advice接口

package com.iot.proxy.aopframework;

import java.lang.reflect.Method;
/**
 * Created by brian on 2016/2/2.
 */
public interface Advice {
  void beforeMethod(Method method);
  void aftereMethod(Method method);
}

MyAdvice類

package com.iot.proxy.aopframework;
import java.lang.reflect.Method;
/**
 * Created by brian on 2016/2/2.
 */
public class MyAdvice implements Advice{
	long beginTime = 0 ;
	@Override
	  public void beforeMethod(Method method) {
		System.out.println(method.getName()+" before at "+beginTime);
		beginTime = System.currentTimeMillis();
	}
	@Override
	  public void aftereMethod(Method method) {
		long endTime = System.currentTimeMillis();
		System.out.println(method.getName()+" cost total "+ (endTime-beginTime));
	}
}

BeanFactory類

package com.iot.proxy.aopframework;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
 * Created by brian on 2016/2/2.
 */
public class BeanFactory {
	Properties properties = new Properties();
	public BeanFactory(InputStream inputStream){
		try {
			properties.load(inputStream);
		}
		catch (IOException e) {
			e.printStackTrace();
		}
	}
	public Object getBean(String name){
		String className = properties.getProperty(name);
		Object bean = null;
		try {
			Class clazz = Class.forName(className);
			bean = clazz.newInstance();
		}
		catch (ClassNotFoundException e) {
			e.printStackTrace();
		}
		catch (InstantiationException e) {
			e.printStackTrace();
		}
		catch (IllegalAccessException e) {
			e.printStackTrace();
		}
		if (bean instanceof ProxyFactoryBean){
			ProxyFactoryBean proxyFactoryBean = (ProxyFactoryBean)bean;
			Advice advice = null;
			Object target = null;
			try {
				advice = (Advice) Class.forName(properties.getProperty(name+".advice")).newInstance();
				target = Class.forName(properties.getProperty(name+".target")).newInstance();
			}
			catch (InstantiationException e) {
				e.printStackTrace();
			}
			catch (IllegalAccessException e) {
				e.printStackTrace();
			}
			catch (ClassNotFoundException e) {
				e.printStackTrace();
			}
			proxyFactoryBean.setAdvice(advice);
			proxyFactoryBean.setTarget(target);
			Object proxy = ((ProxyFactoryBean) bean).getProxy();
			return proxy;
		}
		return bean;
	}
}

ProxyFactoryBean類

package com.iot.proxy.aopframework;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
 * Created by brian on 2016/2/3.
 */
public class ProxyFactoryBean {
	private Object target;
	private Advice advice;
	public Object getProxy(){
		Object proxy = Proxy.newProxyInstance(
		        target.getClass().getClassLoader(),
		        target.getClass().getInterfaces(),
		        new InvocationHandler() {
			@Override
			          public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
				advice.beforeMethod(method);
				Object retVal = method.invoke(target,args);
				advice.aftereMethod(method);
				return retVal;
			}
		}
		);
		return proxy;
	}
	public Object getTarget() {
		return target;
	}
	public void setTarget(Object target) {
		this.target = target;
	}
	public Advice getAdvice() {
		return advice;
	}
	public void setAdvice(Advice advice) {
		this.advice = advice;
	}
}

AopFrameWorkTest類

package com.iot.proxy.aopframework;
import java.io.InputStream;
import java.util.Collection;
/**
 * Created by brian on 2016/2/3.
 */
public class AopFrameWorkTest {
	public static void main(String[] args) {
		InputStream inputStream = AopFrameWorkTest.class.getResourceAsStream("config.properties");
		Object bean = new BeanFactory(inputStream).getBean("xxx");
		System.out.println(bean.getClass().getName());
		((Collection) bean).clear();
	}
}

輸出

  • 配置xxx=com.iot.proxy.aopframework.ProxyFactoryBean

輸出為:

com.sun.proxy.$Proxy0
clear before at 0
clear cost total 0

  • 配置xxx=java.util.ArrayList

輸出為:

java.util.ArrayList

可以看出,只改變配置文件,就可改變代碼的運(yùn)行結(jié)果,從而達(dá)到靈活的效果

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Java如何實(shí)現(xiàn)AOP功能的封裝與配置的小框架”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!


本文標(biāo)題:Java如何實(shí)現(xiàn)AOP功能的封裝與配置的小框架
本文地址:http://weahome.cn/article/gggdcp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部