CXF 配置备忘
服务端配置:
web.xml
IHelloWorld.java
http://127.0.0.1:8088/CXFSpring/HelloWorld?wsdl
客户端配置:
application-webservice.xmlpackage client;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import test.IHelloWorld;public class Client {public static void main(String[] args) {ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContext.xml");IHelloWorld helloWorld = (IHelloWorld) context.getBean("helloWorldClient");System.out.println(helloWorld.sayHello("Test"));}}