Apache Thrift.
Thrift is a software framework for scalable cross-language services development..
Here is the list of declaration for libthrift. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.9.1</version> </dependency>
If you think this Maven repository POM file listing for libthrift is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The libthrift-0.9.1 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.5.8 The slf4j API | 88 |
Data Structure | commons-lang3 3.1 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 287 |
Http | httpclient 4.2.5 HttpComponents Client (base module) | 28 |
Http | httpcore 4.2.4 HttpComponents Core (blocking I/O) | 7 |
The following table lists the most popular artifacts which are depending on libthrift-0.9.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | thrift-server 0.3.3 Thrift Server implementation backed by LMAX Disruptor. Shows better throughput/latency characteristics than build-in THsHa and TThreadedSelector servers. | 7 |
Document Database | cassandra-thrift 2.1.0 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 11 |
Document Database | cassandra-all 2.0.4 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 9 |
Document Database | cassandra-thrift 2.1.1 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 8 |
The following packages are defined in the libthrift-0.9.1.jar
org.apache.thrift org.apache.thrift.async org.apache.thrift.meta_data org.apache.thrift.protocol org.apache.thrift.scheme org.apache.thrift.server org.apache.thrift.transport
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.9.1</version> <packaging>pom</packaging> <name>Apache Thrift</name> <description>Thrift is a software framework for scalable cross-language services development.</description> <url>http://thrift.apache.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:https://git-wip-us.apache.org/repos/asf/thrift.git</connection> <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/thrift.git</developerConnection> <url>https://git-wip-us.apache.org/repos/asf?p=thrift.git</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.8</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.2.5</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.2.4</version> </dependency> </dependencies> </project>