WebService CXF知识总结
2018-10-23
<wsdl:service name="Iptv3aBasicService">
客户端client信息,CXF会生成一个名为Iptv3ABasicService的客户端类,它会有一个方法得到ServiceAuthIn实例,ServiceAuthIn是webService的接口类。
如果想CXF生成的类少,少用类型间相互引用,引用一次,生成一个类
把
<complexType name="ProductMO"> <sequence> </sequence> </complexType>
换成
<element name="ProductMO">
<complexType>
</complexType>
</element>
2018-10-27
绑定方法DataBinding(接口有)4种实现类,分别是JAXBDataBinding、StaxDataBinding、AegisDatabinding和SourceDataBinding。
2019-01-01
samples - aegis 参数命名可以通用xml修改。(非动态,修改后要重启服务),就好比,在代码里,你想命名为tagName,但是在xml里,你想命名为tag_name
samples - aegis_standalone 展示了如何用aegis的方式来读或写xml
samples - antbuild 以ant方式运行。其中启动服务是用Endpoint.publish(address, implementor);
posted on 2018-10-23 21:28 angelshelter 阅读(118) 评论(0) 编辑 收藏 举报