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 "JEE 5 Support"

(JEE 5 Support)
(JEE 5 Support)
Line 9: Line 9:
 
Java EE 5 focuses on making development easier. JEE5 includes all JEE 1.4 features and improves them. This is accomplished by improvements in Web Services, Web Application, Enterprise Application and Management areas. Specifically:
 
Java EE 5 focuses on making development easier. JEE5 includes all JEE 1.4 features and improves them. This is accomplished by improvements in Web Services, Web Application, Enterprise Application and Management areas. Specifically:
  
*Web Services API Based on JSR 109 Also see [http://wiki.eclipse.org/index.php/Axis2_Integration_in_WTP ]
+
*Web Services API Based on JSR 109.  Axis2 is being integrated into WTP that provides many of the following feature.  See the notes on: [http://wiki.eclipse.org/index.php/Axis2_Integration_in_WTP ]
 
**JSR-224 JAX-WS 2.0 JAXB 2 SAAJ 1.3
 
**JSR-224 JAX-WS 2.0 JAXB 2 SAAJ 1.3
 
**JAX-RPC 1.1
 
**JAX-RPC 1.1

Revision as of 09:47, 30 November 2006

Introduction

This page contains information about implementing JEE 5 support in WTP. JEE 5 support is one of the primary tasks in WTP 2.0 release see [1]. If you are interested in JEE 5 support and have questions, comments, etc., about implementation, send a note to the WTP Dev List or contact me, Naci Dai.

The following summary is provided by Chuck Bridgham, Neil Hauge and other in wtp-dev list and describes our current understanding of how we will approach the implementation.

JEE 5 Support

Java EE 5 focuses on making development easier. JEE5 includes all JEE 1.4 features and improves them. This is accomplished by improvements in Web Services, Web Application, Enterprise Application and Management areas. Specifically:

  • Web Services API Based on JSR 109. Axis2 is being integrated into WTP that provides many of the following feature. See the notes on: [2]
    • JSR-224 JAX-WS 2.0 JAXB 2 SAAJ 1.3
    • JAX-RPC 1.1
    • JSR 181 Web Services Metadata - Annotated Java classes for easy definition of web services
  • Web Applications
    • Servlet 2.5 (JSR 154)
    • JSP 2.1 (JSR 245)
    • JSTL (JSR 52)
    • JSF 1.2
  • Enterprise Applications
    • EJB3
    • JPA (JSR 220)
    • JCA 1.5 (JSR 112)
  • Management (Related to servers)
    • J2EE Application Deployment (JSR 88)
    • J2EE Management (JSR 77) Manage Web/Enterprise Applications on JEE 5 Servers

JEE 5 Models

We will create a separate package for these JEE 5 models. However, these packages must extend the existing J2EE models [3] for a few reasons:

  • EE5 namespace includes legacy J2EE elements. The new EE5 namespace includes the existing 1.4 elements, we can take advantage of the existing models/EMF-DOM XML translators.
  • Extending the existing J2EE model will help migration scenarios.
  • With the introduction of annotations, the new extended model classes can be adapted using a "new" mapping framework between a annotated JDT AST model (Not JEM).

XML Translator Framework

The existing J2EE models were originally modeled from the J2EE 1.2 version of the spec (DTD's) using the Rose2Ecore transformation tools. These models were evolved as new spec versions were published, being careful that they were backward compatible, and using the XML translators to "select" the attributes used by each spec version. The XML translator framework has its limitations, and isn't well documented, but it provides a bridge between EMF and different XML models/parsing technologies. Another short coming is that it will built to handle annotation mapping.

The Translator model allows the EMF models to be updated during the editing of in the XML documents (i.e. SSE XML editor). This is critical for implementing high quality tools and editors as the model is always in sync.

JEM and JEE 5 Annotations

Dali has implemented support for relevant portions of the JEE 5 spec using the above techniques. Therefore it provides a prototype for the JEE 5 support. Adapting their EMF model with the JDT AST model, and refactoring out a mapping layer similar to the translator framework, adopters could then publish their own annotation processing layer. WTP could create a reference implementation of this. The XML and annotation models don't match in all cases, and separate mappings will be required to keep a common EMF model in synch.

There is general agreement that JEM is not the direction we want to take for modeling annotations. JEM project has not committed for making these enhancements. JEM support would be extremely helpful.

The Java EE annotation classes provide a model, and JEE 5 models in WTP should make an effort to use them not replicate when its possible.

Creating a model around the JDT AST makes the most sense. We also need to do more research regrading the APT api's. There is a general lack of model support for annotations in Eclipse. There are some basic issues in the JDT core that have been around for a long time that make things difficult with regard to annotation support. [4]. This bug requests basic support for annotations in the Java model. This is really where support for annotations should begin. In Dali there is a "util.jdt" with AST and JDT to support annotation configuration. Even at the AST level, annotations are not represented as a first class element, [5]. The JDT team is now actively looking at these issues. Once (and if) they are resolved, it would seem reasonable to take the next step to including specific API's for managing annotations and their complexity.

APT APIs

More feedback is needed here


Facets

Most existing WTP tools such as EJBs, Web Services can be extended for JEE 5 support. Th proper mechanism to enable such extensions is likely to be addition of new project facets. Tools will have to introspect projects for JEE5 facets and needs to take proper actions (i.e. add proper deployment descriptors, annotations, etc.). It makes sense to define a standard set of JEE 5 facets and hierarchy so that such tools can be implemented.

JEE 5 Focus Workgroup

A focus group will be setup to oversee the implementation of JEE 5 support. Here is suggested list of participants.

  • Chuck Bridgham - As the Component and Tech Lead for the EE5 Models
  • Neil Hauge - Mapping Annotations
  • Kaloyan Raev - Adopter/Contributor
  • And other interested parties.....

We will discus the contents of this page as the agenda of the first meeting.

Back to the top