问题描述
如题查了不少网页,都是简单的教程,一般也都是写一个接口,直接发布了<beanid="SayHello"class="com.yxj.CxfWBImpl"/><jaxws:endpointid="sayHello"implementor="#SayHello"address="/abc"/>如果想在一个wsdl中发布多个服务接口,改如何配置呢?下面的abc和abc1如果换成一样的就会报错,正确的配置方法是如何呢?请各位大侠赐教...<beanid="SayHello"class="com.yxj.CxfWBImpl"/><beanid="Test"class="com.yxj.MultiTestImpl"/><jaxws:endpointid="sayHello"implementor="#SayHello"address="/abc"/><jaxws:endpointid="test"implementor="#Test"address="/abc1"/>
解决方案
解决方案二:
同求,为什么没人回答呢...接口多一个个配有很大一堆,
解决方案三:
请问楼主实现了吗?我现在也是这样的问题,得配20多个接口,得一个一个的配太麻烦了,楼主找到解决的办法了吗?
解决方案四:
<context:component-scanbase-package="com.*"/><!--配置切入点1-->-<aop:config><aop:pointcutid="pointcut"expression="execution(*com.*.biz.*.*(..))"/><aop:advisorpointcut-ref="pointcut"advice-ref="txAdvice"/></aop:config>-<jaxws:serverid="service1"address="/地址1"><!--配置切入点2-->-<aop:config><aop:pointcutid="pointcut"expression="execution(*com.*.biz.*.*(..))"/><aop:advisorpointcut-ref="pointcut"advice-ref="txAdvice"/></aop:config>-<jaxws:serverid="service2"address="/地址2">