Sping3+CXF Web应用
一、准备环境
?? Apache Cxf 2.4.5
??
?
二、服务端
?
?? 由于最近再写一个发送邮件的东西,于是在这个东西上稍加修改成为我们的服务端程序。这里只是用来表达CXF的工作流程及配置!
?
1、服务接口
??
?
?
GlobalConstants.properties
?
?虽然客户端生成了但是却报出异常
?
Service(URL, QName, WebServiceFeature[]) is undefined?
?
?
四、测试
??? 业务处理
??
IMailSendService mailSendService = (IMailSendService) ApplicationContextHelper.getBean("mailSendServiceClient"); mailSendService.sendMail("", "", "邮件测试", "", "邮件测试!");?
??? 邮件发送成功,OK。
?
?
?
?