码迷,mamicode.com
首页 > 编程语言 > 详细

tars支持spring

时间:2018-07-03 14:55:22      阅读:610      评论:0      收藏:0      [点我收藏+]

标签:hello   1.4   --   imp   bsp   col   cat   配置   app   

和普通tars HelloWord 项目相比,客户端完全一样,服务端两个地方不一样

依赖

在之前的基础上添加依赖 ---- spring 相关 jar 包

<dependency>
            <groupId>com.tencent.tars</groupId>
            <artifactId>tars-spring</artifactId>
            <version>1.4.0</version>
        </dependency>

暴露服务

1,servants.xml 更名为 servants-spring.xml ,这个文件就相当于 spring 的配置文件 applicationContext.xml ,在此可以集成 SSM 等

2,加入 xsd 

xmlns:tars="http://tars.tencent.com/schema/tars
http://tars.tencent.com/schema/tars http://tars.tencent.com/schema/tars/tars.xsd

3,配置服务

<!-- 配置实现类 bean -->
<bean id="HelloServantImpl" class="com.weipai.server.testapp.impl.HelloServantImpl" />
<!-- 暴露服务 -->
<tars:servant name="HelloObj" interface="com.weipai.server.testapp.HelloServant" ref="HelloServantImpl"/>

 

tars支持spring

标签:hello   1.4   --   imp   bsp   col   cat   配置   app   

原文地址:https://www.cnblogs.com/huanggy/p/9257926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!