https://github.com/jFastCGI/jfastcgi
jFastCGI
https://github.com/jFastCGI/jfastcgi
Last synced: 25 days ago
JSON representation
jFastCGI
- Host: GitHub
- URL: https://github.com/jFastCGI/jfastcgi
- Owner: jFastCGI
- License: other
- Created: 2013-08-08T20:23:59.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2025-05-01T20:02:31.000Z (about 1 year ago)
- Last Synced: 2025-05-01T20:34:10.717Z (about 1 year ago)
- Language: Java
- Size: 4.88 MB
- Stars: 40
- Watchers: 8
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.TXT
- License: LICENSE_JRIALLAND.txt
Awesome Lists containing this project
- awesome-java - jFastCGI
README
# jFastCGI
jFastCGI is the implementation of the FastCGI Protocol with the Java language.
The project gets build using Apache Maven 3 and is split into two main modules:
[](https://travis-ci.org/jFastCGI/jfastcgi)
[](https://maven-badges.herokuapp.com/maven-central/net.sf.jfastcgi/jfastcgi)

[](https://waffle.io/jfastcgi/jfastcgi/metrics)
## Server
This module contains code originally published on http://www.fastcgi.com/ to
allow simple Java Programs to expose their functionality to a FastCGI client.
In our code its main purpose is for Unit Testing, but you can of course use it
to build your own applications that want to expose a FastCGI Interface.
## Client
This module contains code to _access_ a FastCGI Service. Usually those services
are written in other languages. A common example for a FastCGI Service is a PHP binary
exposed through FastCGI.
The client module contains some submodules to ease your every day work:
### Client "CORE"
This module contains the base code used to access a FastCGI Service. It abstracts
the Request (including all headers), allows the request to be sent to the service
and a Response to be received.
### Client Servlet
This module contains code to directly bridge a Java Servlet to a FastCGI Service,
so that the FastCGI Service can be accessed through the Servlet.
### Client Portlet
This module contains code to directly bridge a FastCGI Service into a Portlet,
so the FastCGI Service can be integrated into a Portlet Container.
### Client Spring
This module contains code to allow integration with the Spring Framework.
### Client bundled
This module creates a "bundled" or sometimes called "shaded" version of the project.
The resulting JAR contains all classes from client-core, client-servlet, client-portlet and
client-spring. Its supposed to be used by people that are not using Maven or another dependency
resolver. See [the download site](http://www.jfastcgi.org/download.html) for further details.
## Credits
Credits go out to Julien Rialland who created the [base version](http://sourceforge.net/projects/jfastcgi/)
of the jFastCGI Project on Sourceforge: http://sourceforge.net/projects/jfastcgi/
Dominik Dorn imported the source code from sourceforge using the git svn command and converted it
into a full-blown maven project including submodules, sites, etc.
The last commit (rev69) on the sourceforge project was in April 2012, its tagged as "v2.2_ref69_sourceforge"
in our Git Repository.
## License
The codebase currently has 3 (three) licenses.
* The code originally provided by Julien is BSD licensed (see LICENSE\_JRIALLAND.txt)
* The code originally provided by the fastcgi.com guys / Open Market, Inc. is also some kind of BSD / public domain license
* New code is licensed with the Apache Software License 2.