Java??????????????????????????
???????????? ???????[ 2012/8/13 10:37:46 ] ????????
????????????????????????????????????????????????????????????????????????? println() ??????????????????????????????????????????????????????????????????????????????????洢???????????????????????? JMX MBean ???????????????????????????????????????????????????????????С?
????????????????????????е? AOP ???????????????????“?????? AOP ?ó??????”???????????????????????? —— ?????????????????????????????ζ???????????????????κ?????£???????????????????“?? Java”??Χ??????????????????????????????????? AOP ???
????????????????????
??????????????????????????????????????????????????????????????????????????t????????????????????????????????????????????????????????????????????????????磬????????????????? ??Person??Company ?? PurchaseOrder?? ?? JavaBean ?????????????? getter ?? setter???????????д?????ò??????????????????Щ?????????????????????????д?????????????????? JavaBean ??????????????????????? Map ?С?
?????嵥 7 ????????????鱻???÷?????????????????????????????????? getter ?? setter ????????????????????????????? JavaBean ?????????
?????嵥 7. ????? getter ?? setter ????? Map ??????????
1.public class JavaBeanProxyFactory {
2. private static class JavaBeanProxy implements InvocationHandler {
3. Map properties = new HashMap();
4.public JavaBeanProxy(Mapproperties) {
5. this.properties.putAll(properties);
6. }
7.public Object invoke(Object proxy?? Method method??
8. Object[] args)
9. throws Throwable {
10. String meth = method.getName();
11. if (meth.startsWith("get")) {
12. String prop = meth.substring(3);
13. Object o = properties.get(prop);
14. if (o != null && !method.getReturnType().isInstance(o))
15. throw new ClassCastException(o.getClass().getName() +
16. " is not a " + method.getReturnType().getName());
17. return o;
18. }
19. else if (meth.startsWith("set")) {
20. // Dispatch setters similarly
21. }
22. else if (meth.startsWith("is")) {
23. // Alternate version of get for boolean properties
24. }
25. else {
26. // Can dispatch non get/set/is methods as desired
27. }
28. }
29. }
30.public staticT getProxy(Classintf??
31. Map values) {
32. return (T) Proxy.newProxyInstance
33. (JavaBeanProxyFactory.class.getClassLoader()??
34. new Class[] { intf }?? new JavaBeanProxy(values));
35. }
36. }
???????????????? Object ??????????????????????????????????JavaBeanProxyFactory ?е? getter ?????????Щ??????????????????????????? isInstance() ?? getter ???е????????
??????????
???????????????????????????м????????????? —— ??????????????????????????????????????????д?????????????????????? ?????????????????????????????鷽??????????????Щ?????????????????? JDK ?У?????????????????? JDK ?м???????????μ??????????????????? 10 ?????????????????
????????????????????????????д??????????????????????????????????????? Set???????? Set???в??????????????????????? Set ??????????????δ?????ε? HashSet???????д??????????з???????????? HashSet ?? Set ????????????????????????????????з??????????? HashSet ?? Set ?????????????????????????????????????????????? Set ????????д???????????????? HashSet ????????????????????????????? JVM ????Ч???????????????????????????????????????????? HashSet ??????????????????????????
??????????????ó??????????????????????????????????????????????е?????????????????????????????????????????????????????????????л?????? IO ????????????????????????????????????Ч?????? 0???????????Щ??????????????????????????????????Щ???????????????
??????????
?????????????????δ????????????????????????????????????? Proxy??Decorator ?? Adapter????Щ??????????????????д????????????????????????????????????£????????????????????н??? Decorator ?? Proxy???????????????????д?????????????????????ó??????????????????????д????????? stub ???????????
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11