摘要: 欢迎转载,出处http://www.cnblogs.com/shizhongtao/p/3433679.html利用cxf的框架实现import javax.xml.namespace.QName;import org.apache.cxf.endpoint.Client;import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory; JaxWsDynamicClientFactory factory = JaxWsDynamicClientFactory.newInstance(); ... 阅读全文
posted @ 2013-11-20 15:24 bingyulei 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 欢迎转载 http://www.cnblogs.com/shizhongtao/p/3433653.html使用wsdl2java工具命令 一、 调出命令提示符cd到cxf的解压路径“D:\学习文档\jar\cxf\apache-cxf-2.6.8\bin”,在路径下执行wsdl2java -p com.bing.client -frontend jaxws21 http://localhost:8080/webservice/ws/helloworld?wsdl我这里是存放到命令路径下的com/bing/client文件下,参数说明-p是文件路径,当然你可以在加上-d来指定盘符,如果不指定就 阅读全文
posted @ 2013-11-20 15:13 bingyulei 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 关于cglib的jar包官方的文档上有这么一段话NoteFor this dynamic subclassing to work, the class that the Spring container will subclass cannot be final, and the method to be overridden cannot be final either. Also, testing a class that has an abstract method requires you to subclass the class yourself and to supply a s 阅读全文
posted @ 2013-11-20 09:36 bingyulei 阅读(1398) 评论(0) 推荐(0) 编辑