mod_jk is an Apache module used to connect the Tomcat servlet container with web servers such as Apache, iPlanet, Sun ONE (formerly Netscape) and even IIS using the Apache JServ Protocol. The mod_proxy_ajp module performs a similar function to this module, while being integrated into the mod proxy framework.
A web server waits for client HTTP requests. When these requests arrive, the server does what is needed to serve the requests by providing the necessary content.
Adding a servlet container alters this behavior. Now the web server needs also to:
- Load the servlet container adapter library and initialize it (prior to serving requests).
- When a request arrives, it needs to check and see if a certain request belongs to a servlet, if so it needs to let the adapter take the request and handle it.
The adapter needs to know what requests it is going to serve, usually based on some pattern in the request URL, and to where to direct these requests.
Things are more complex when the user wants to set a configuration that uses virtual hosts, or when they want multiple developers to work on the same web server but on different servlet container JVMs.
See also
- JSP
- Java Servlet
- Java platform
- mod perl
- mod python
- mod wsgi
- mod php
External links
- Tomcat Documentation
- Tomcat How-to guide
Web interfaces |
|---|
| Server-side | | Protocols |
- HTTP
- CGI
- SCGI
- FCGI
- AJP
- WSRP
- WebSocket
|
|---|
| Server APIs |
- C NSAPI
- C ASAPI
- C ISAPI
- COM ASP
- Java servlet
- CLI OWIN
- ASP.NET Handler
- Python WSGI
- Ruby Rack
- JavaScript JSGI
- Perl PSGI
- Lua WSAPI
- Portlet
|
|---|
| Apache modules |
- mod include
- mod jk
- mod lisp
- mod mono
- mod parrot
- mod perl
- mod php
- mod proxy
- mod python
- mod wsgi
- mod ruby
- Phusion Passenger
|
|---|
| Topics |
- Web resource vs. Web service
- Open API
- Webhook
- Application server
- Scripting
|
|---|
|
|---|
| Client-side | | Browser APIs |
- C NPAPI
- C NPRuntime
- C PPAPI
- ActiveX
- BHO
- XBAP
|
|---|
| Web APIs | | W3C |
- Audio
- Canvas
- CORS
- DOM
- DOM events
- EME
- File
- Geolocation
- IndexedDB
- MSE
- SSE
- SVG
- Video
- WebAuthn
- WebRTC
- WebSocket
- Web messaging
- Web storage
- Web worker
- XMLHttpRequest
- WebAssembly
|
|---|
| Khronos | |
|---|
| Others |
- Gears
- Web SQL Database (formerly W3C)
- WebUSB
|
|---|
|
|---|
| Topics |
- Ajax and Remote scripting vs. DHTML
- Mashup
- Web IDL
- Scripting
|
|---|
|
|---|
| Topics |
- Dynamic web page
- Web standards
- Rich web application
- Web API security
- Web application
- Web framework
|
|---|
 | Original source: https://en.wikipedia.org/wiki/Mod jk. Read more |