文章标题

来源:互联网 发布:海南网络小贷牌照 编辑:程序博客网 时间:2024/06/05 00:09

主项目 和 子项目 连接 需要分别在 子项目的 web_service中的 applicationContext-webservice.xml 加

<jaxws:endpoint id="communityfacade"    implementor="com.accompany.interfaces.external.order.community.facade.impl.CommunityFacade"        address="/communityFacade" /></beans>

主项目 access中 加
<jaxws:endpoint id="communityfacade"
implementor="com.accompany.interfaces.external.order.community.facade.ICommunityFacade"
address="${community.services.url}//communityFacade" />

主项目 platfrom pom 中 加 facade 的 架包
<dependency>
<groupId>com.accompany.order</groupId>
<artifactId>community_interface</artifactId>
<version>${community.version}</version>
</dependency>

主项目 access pom 中加 架包
<dependency>
<groupId>com.accompany.order</groupId>
<artifactId>community_interface</artifactId>
</dependency>

0 0
原创粉丝点击