摘要: 这个方式创建的webservice可以和web项目放到同一个工程下。创建webservice服务,所需要的jar包如下: axiom-api-1.2.8.jar axiom-impl-1.2.8.jar axis-0.1.jar axis2-adb-1.5.jar axis2-kernel... 阅读全文
posted @ 2015-04-18 21:47 倾光 阅读(3518) 评论(0) 推荐(0) 编辑
摘要: 这两天没事学习下了反射。通过反射我们可以修改对象中的字段的值。 就如下面这段代码 Grade grade=new Grade(); Field f=Grade.class.getDeclaredField("name"); f.setAccessible(true); f.s... 阅读全文
posted @ 2015-03-05 23:14 倾光 阅读(4814) 评论(0) 推荐(0) 编辑