Reputation: 6789
Java class exposes some method getStuff(); via thrift to a php client so all users interact with are .php files which connect to java via thrift...do i still need tomcat/glassfish etc or does the jdk suffice?
Upvotes: 1
Views: 185
Reputation: 3005
JDK /JRE would suffice. You do not need a J2EE server.
Sample Thrift Program details about using Thrift with a C++ Client and a JAVA service.
It should help you get started. Once you have written a (Java) Server class to handle the requests - you can run it as a standalone Java application.
Also, look at the Sample provided on the Thrift Website
Upvotes: 1