- 相關(guān)推薦
java利用反射實現(xiàn)動態(tài)代理實現(xiàn)代碼
復(fù)制代碼 代碼如下:
package com.et59.cus.domain.dao.ex;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import org.apache.log4j.Logger;
/**
*
*
Title: ReflectUtil.java
*
Description: 反射
*
Company: 點滴工作室
* @version 2.0
*
*/
public class ReflectUtil {
private static final Logger log = Logger.getLogger(ReflectUtil.class);
@SuppressWarnings({ "rawtypes", "unchecked" })
public static void setFieldValue(Object target, String fname, Class ftype,
Object fvalue) {
if (target == null
|| fname == null
|| "".equals(fname)
|| (fvalue != null && !ftype.isAssignableFrom(fvalue.getClass()))) {
return;
}
Class clazz = target.getClass();
try {
Method method = clazz.getDeclaredMethod("set"
+ Character.toUpperCase(fname.charAt(0))
+ fname.substring(1), ftype);
if (!Modifier.isPublic(method.getModifiers())) {
method.setAccessible(true);
}
method.invoke(target, fvalue);
} catch (Exception me) {
if (log.isDebugEnabled()) {
// log.debug("me異常-------->:"+me);
}
try {
Field field = clazz.getDeclaredField(fname);
if (!Modifier.isPublic(field.getModifiers())) {
field.setAccessible(true);
}
field.set(target, fvalue);
} catch (Exception fe) {
if (log.isDebugEnabled()) {
log.debug("fe----------->"+fe);
}
}
}
}
}
【java利用反射實現(xiàn)動態(tài)代理實現(xiàn)代碼】相關(guān)文章:
關(guān)于Java動態(tài)實現(xiàn)的方法08-23
java構(gòu)造函數(shù)實現(xiàn)代碼示例08-23
Java實現(xiàn)在不同線程中運行的代碼實例詳解06-11
用canvas就可以實現(xiàn)圖片的濾鏡轉(zhuǎn)化代碼實現(xiàn)07-19
使用python實現(xiàn)Linux異步epoll的代碼10-27
PHP實現(xiàn)大文件上傳源代碼10-21
實現(xiàn)java屏幕抓屏的方法08-24
JavaScript簡單實現(xiàn)放大鏡效果代碼09-24
java通用組合算法如何實現(xiàn)09-12