Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Jetty/Reference/Web Profile"

 
Line 1: Line 1:
 
== Web Profile for JEE6 and Jetty ==
 
== Web Profile for JEE6 and Jetty ==
  
{{Jetty TODO}}
+
{{Jetty Redirect|http://www.eclipse.org/jetty/documentation/current/jetty-javaee.html}}
  
 
Jetty-8.x implements aspects of the JEE6 specification. Most notably it implements the [http://jcp.org/aboutJava/communityprocess/final/jsr315/index.html Servlet 3.0 specification].
 
Jetty-8.x implements aspects of the JEE6 specification. Most notably it implements the [http://jcp.org/aboutJava/communityprocess/final/jsr315/index.html Servlet 3.0 specification].

Latest revision as of 11:30, 26 April 2013

Web Profile for JEE6 and Jetty

Warning2.png
Jetty 7 and Jetty 8 are now EOL (End of Life)




THIS IS NOT THE DOCUMENTATION YOU ARE LOOKING FOR!!!!!






All development and stable releases are being performed with Jetty 9 and Jetty 10.






This wiki is now officially out of date and all content has been moved to the Jetty Documentation Hub






Direct Link to updated documentation: http://www.eclipse.org/jetty/documentation/current/jetty-javaee.html


Jetty-8.x implements aspects of the JEE6 specification. Most notably it implements the Servlet 3.0 specification.

With JEE6, the idea of a profile is introduced, which recognizes that many developers need only a subset of the technologies under the JEE umbrella. The Web Profile is the first profile, and specifies a subset of technologies that the JSR feels are commonly used by developers of web applications.

The following matrix depicts which Web Profile technologies are distributed with jetty-8.

Note that although some are omitted, jetty's pluggable architecture and the new Servlet 3.0 web fragments allow the developer to plug in implementations for the missing pieces as desired.

JSR id Name Included with Jetty
JSR 315 Servlet 3.0 x
JSR 314 JSF 2.0
JSR 245 JSP 2.2/EL 2.2 x
JSR 52 JSTL 1.2 x
JSR 45 Debug support x (via jsp)
JSR 299 Contexts, Dependency Injection
JSR 330 Dependency Injection for Java
JSR 316 Managed Beans
JSR 318 Enterprise Beans 3.1
JSR 317 Java Persistence API
JSR 250 Common Annotations x
JSR 907 JTA x
JSR 303 Bean validation

Back to the top