Registry / web-framework / geronimo-spec-servlet

geronimo-spec-servlet

JSON →
library1.0-M1javamavenunverified

Apache Geronimo implementation of the Servlet API specification for Java web applications.

<dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-servlet</artifactId> <version>1.0-M1</version> </dependency>
INSTALL
IMPORT
SIG · GERONIMO-SPEC-SERV
G
geronimo-spec-servlet
web-frameworkjavav1.0-M1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

HttpServlet
javax.servlet.http.HttpServlet

Minimal example showing a simple servlet that responds to GET requests.

import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; public class Quickstart extends HttpServlet { protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.getWriter().println("Hello from Geronimo Servlet!"); } }
Debug
Known issues
breakingThis is an old specification implementation; consider using the official javax.servlet API from Apache Tomcat or Eclipse.
fix
Replace with javax.servlet:javax.servlet-api or jakarta.servlet:jakarta.servlet-api for modern projects.
affects: all
Upgrade
Version history
1.0-M1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
geronimo-spec-servlet — mvn dependency:get geronimo-spec-servlet · libregistry