@@ -11,10 +11,10 @@ For more information on Rack, visit http://rack.github.io/.
1111
1212## Compatibility
1313
14- | JRuby-Rack Version | Status | JRuby Compat | Java Compat | Target Servlet API | Target Java EE | Notes |
15- | --------------------------------------------------------------| ------------| -------------- | ------------- | --------------------| ----------------| ---------------------------------------------------|
16- | [ 1.2.x] ( https://github.com/jruby/jruby-rack/tree/1.2-stable ) | Maintained | 9.3 → 9.4 | Java 8+ | 3.0 | Java EE 6 | Servlet 3.1 → 4.0 tested OK with some containers. |
17- | [ 1.1.x] ( https://github.com/jruby/jruby-rack/tree/1.1-stable ) | EOL | 1.6 → 9.4 | Java 8+ | 2.5 | Java EE 5 | Servlet 3.0 → 4.0 tested OK with some containers. |
14+ | JRuby-Rack Version | Status | Rack | JRuby | Java | Target Servlet API | Target Java EE | Notes |
15+ | --------------------------------------------------------------| ------------| -----------| ------------| ---------| --------------------| ---------------- | --------------------------------------------|
16+ | [ 1.2.x] ( https://github.com/jruby/jruby-rack/tree/1.2-stable ) | Maintained | 2.2 | 9.3 → 9.4 | Java 8+ | 3.0 | Java EE 6 | Servlet 3.1 → 4.0 OK with some containers. |
17+ | [ 1.1.x] ( https://github.com/jruby/jruby-rack/tree/1.1-stable ) | EOL | 1.x → 2.2 | 1. 6 → 9.4 | Java 8+ | 2.5 | Java EE 5 | Servlet 3.0 → 4.0 OK with some containers. |
1818
1919## Getting Started
2020
@@ -297,12 +297,12 @@ logging system, configure `jruby.rack.logging` as follows:
297297- ` servlet_context ` (default): Sends log messages to the servlet context.
298298- ` stdout ` : Sends log messages to the standard output stream ` System.out ` .
299299- ` slf4j ` : Sends log messages to SLF4J. SLF4J configuration is left up to you,
300- please refer to http ://www.slf4j.org/docs .html .
301- - ` log4j ` : Sends log messages to log4J. Again, Log4J configuration is
302- left up to you, consult http ://logging.apache.org/log4j/ .
300+ please refer to https ://www.slf4j.org/manual .html .
301+ - ` log4j ` : Sends log messages through Log4j. Only Log4j 2.x is supported, for
302+ - configuration please consult https ://logging.apache.org/log4j/2.x/index.html .
303303- ` commons_logging ` : Routes logs to commons-logging. You still need to configure
304- an underlying logging implementation with JCL. We recommend using the logger
305- library wrapper directly if possible, see http://commons.apache.org/logging/ .
304+ an underlying logging implementation with JCL.
305+ We recommend rather using the logger library wrapper directly when possible.
306306- ` jul ` : Directs log messages via Java's core logging facilities (util.logging).
307307
308308For those loggers that require a specific named logger, set it with the
0 commit comments