//package test;
//
//import java.lang.reflect.Method;
//import java.lang.reflect.Type;
//
//public class Test {
//
// /**
// * @param args
// */
// public static void main(String[] args) {
// Class clazz = null;
// try {
// clazz = Class.forName("com.wgtgt.bean.Book");
// } catch (ClassNotFoundException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
// Method[]methods=clazz.getMethods();
// for (Method method : methods) {
// Type[]types=method.getGenericParameterTypes();
// for (Type type : types) {
// System.out.println("type=>"+type+"<");
// }
// }
//
// }
//
//}