{"id":50350493,"url":"https://github.com/jFastCGI/jfastcgi","last_synced_at":"2026-06-15T12:01:39.266Z","repository":{"id":9962913,"uuid":"11985762","full_name":"jFastCGI/jfastcgi","owner":"jFastCGI","description":"jFastCGI","archived":false,"fork":false,"pushed_at":"2025-05-01T20:02:31.000Z","size":5120,"stargazers_count":40,"open_issues_count":3,"forks_count":12,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-05-01T20:34:10.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jFastCGI.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.TXT","contributing":null,"funding":null,"license":"LICENSE_JRIALLAND.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-08-08T20:23:59.000Z","updated_at":"2025-05-01T19:44:08.000Z","dependencies_parsed_at":"2025-05-01T20:28:10.621Z","dependency_job_id":"3244e8ad-aa47-4697-8f65-5209d73268e3","html_url":"https://github.com/jFastCGI/jfastcgi","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/jFastCGI/jfastcgi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jFastCGI%2Fjfastcgi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jFastCGI%2Fjfastcgi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jFastCGI%2Fjfastcgi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jFastCGI%2Fjfastcgi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jFastCGI","download_url":"https://codeload.github.com/jFastCGI/jfastcgi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jFastCGI%2Fjfastcgi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34361403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-29T21:00:23.918Z","updated_at":"2026-06-15T12:01:39.260Z","avatar_url":"https://github.com/jFastCGI.png","language":"Java","funding_links":[],"categories":["Web服务器"],"sub_categories":["微服务框架"],"readme":"# jFastCGI\n\njFastCGI is the implementation of the FastCGI Protocol with the Java language. \n\nThe project gets build using Apache Maven 3 and is split into two main modules:\n\n[![Build Status](https://travis-ci.org/jFastCGI/jfastcgi.svg)](https://travis-ci.org/jFastCGI/jfastcgi)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.sf.jfastcgi/jfastcgi/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.sf.jfastcgi/jfastcgi)\n\n\n\n![Commits](https://www.openhub.net/p/jfastcgi/analyses/latest/commits_spark.png)\n\n[![Throughput Graph](https://graphs.waffle.io/jfastcgi/jfastcgi/throughput.svg)](https://waffle.io/jfastcgi/jfastcgi/metrics) \n\n## Server\n\nThis module contains code originally published on http://www.fastcgi.com/ to \nallow simple Java Programs to expose their functionality to a FastCGI client. \n\nIn our code its main purpose is for Unit Testing, but you can of course use it\nto build your own applications that want to expose a FastCGI Interface. \n\n\n## Client\n\nThis module contains code to _access_ a FastCGI Service. Usually those services\nare written in other languages. A common example for a FastCGI Service is a PHP binary\nexposed through FastCGI. \n\nThe client module contains some submodules to ease your every day work:\n\n### Client \"CORE\"\n\n\nThis module contains the base code used to access a FastCGI Service. It abstracts\nthe Request (including all headers), allows the request to be sent to the service\nand a Response to be received. \n\n\n### Client Servlet\n\n\nThis module contains code to directly bridge a Java Servlet to a FastCGI Service,\nso that the FastCGI Service can be accessed through the Servlet. \n\n### Client Portlet\n\n\nThis module contains code to directly bridge a FastCGI Service into a Portlet,\nso the FastCGI Service can be integrated into a Portlet Container. \n\n\n### Client Spring\n\n\nThis module contains code to allow integration with the Spring Framework.\n\n\n### Client bundled\n\n\nThis module creates a \"bundled\" or sometimes called \"shaded\" version of the project.\nThe resulting JAR contains all classes from client-core, client-servlet, client-portlet and\nclient-spring. Its supposed to be used by people that are not using Maven or another dependency\nresolver. See [the download site](http://www.jfastcgi.org/download.html) for further details.\n\n## Credits\n\nCredits go out to Julien Rialland who created the [base version](http://sourceforge.net/projects/jfastcgi/)\nof the jFastCGI Project on Sourceforge: http://sourceforge.net/projects/jfastcgi/\n\nDominik Dorn imported the source code from sourceforge using the git svn command and converted it\ninto a full-blown maven project including submodules, sites, etc.\nThe last commit (rev69) on the sourceforge project was in April 2012, its tagged as \"v2.2_ref69_sourceforge\"\nin our Git Repository.\n\n## License\n\nThe codebase currently has 3 (three) licenses.\n\n* The code originally provided by Julien is BSD licensed (see LICENSE\\_JRIALLAND.txt) \n* The code originally provided by the fastcgi.com guys / Open Market, Inc. is also some kind of BSD / public domain license\n* New code is licensed with the Apache Software License 2.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FjFastCGI%2Fjfastcgi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FjFastCGI%2Fjfastcgi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FjFastCGI%2Fjfastcgi/lists"}