摘要:
public class ServiceProxy implements InvocationHandler{ /**目标对象*/ private Object targetObj; public ServiceProxy(Object targetObj) { this.targetObj = t 阅读全文
posted @ 2020-08-10 09:56
FivePointOne
阅读(101)
评论(0)
推荐(0)
摘要:
public class DaoFactory { private static Properties pro = new Properties(); static { try { pro.load(new FileReader("dao.txt")); } catch (Exception e) 阅读全文
posted @ 2020-08-10 09:54
FivePointOne
阅读(665)
评论(0)
推荐(0)