Thrift的第一个例子

MAVEN_HOME
JAVA_HOME
THRIFT_HOME
将thrift-0.9.2.exe的目录加入PATH中

用maven构建工程

引入thrift的依赖,以及slf4j的

<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>0.9.2</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.8</version>
</dependency>

http://www.ibm.com/developerworks/cn/java/j-lo-apachethrift/

加入范例的代码,编译成功后,先重启服务端,再启动客户端。



碰到的问题:

slf4j-api version does not match that of the binding
http://www.slf4j.org/codes.html#version_mismatch
解决方法:
thrift依赖的是1.5.8的slf4j-api,所以在dependency的version中也需要使用相同的版本

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
解决方法:
仅使用slf4j-api是不够的,还需要日志的实现框架,比如slf4j-log4j12
在pom追加后解决
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.8</version>
</dependency>

http://blog.csdn.net/hguisu/article/details/7418161
http://www.cnblogs.com/oubo/archive/2012/01/06/2394638.html

你可能感兴趣的:(thrift)