javaee-spec
javaee-spec copied to clipboard
Java EE Platform Specification
With platforms like Ruby and Play! the underlying persistence engine is often automatically enabled when a data source is defined for the application (in fact these platforms often assume only...
Dear EG, after reading this and trying to create services and expose them through JNDI, I have come up with an idea to simplify and standardize the way currently we...
Java SE 8 introduces the capability of repeating annotations: [http://docs.oracle.com/javase/tutorial/java/annotations/repeating.html](http://docs.oracle.com/javase/tutorial/java/annotations/repeating.html). There are a number of existing Java EE annotations that could adapt to the feature (fortunately in a fairly backwards...
It would be quite easy to test JEE Applications using a CDI container that runs outside the Application Server. Weld already provides a CDI Container for Java SE (Weld-SE). I...
We're creating javaee7 sample to show JMS XA and non-XA connection factory implications ([https://github.com/javaee-samples/javaee7-samples/issues/139](https://github.com/javaee-samples/javaee7-samples/issues/139), [https://github.com/javaee-samples/javaee7-samples/pull/158#issuecomment-30134229](https://github.com/javaee-samples/javaee7-samples/pull/158#issuecomment-30134229)) It works great on wildfly as it exposes both XAConnectionFactory (java:/JmsXA) and non-XA ConnectionFactory (java:/ConnectionFactory)....
The spec currently requires the ability to provide an alternative deployment descriptor for an ear file when deploying the ear file. The alternative deployment descriptor will NOT be packaged in...
Standardizing the EJB Lite Embedded Container in Java EE 6 was a very important first step in improving testability. As the various currently server-specific Java EE embedded containers and projects...
My proposal is to specify in EE 7 that MBeanServer injection should be able in a container environment. The reason for this proposal is, that some AS provide it's own...
In a Java EE application deployment descriptors are used to configure and setup the application. One major issue is that these deployment descriptors are mostly static. In practice, there's often...
Following the thread [http://java.net/projects/javaee-spec/lists/users/archive/2012-12/message/17](http://java.net/projects/javaee-spec/lists/users/archive/2012-12/message/17) @Priority is used to priorityze interceptors in Java EE 7\. It would be interesting to spread this feature to other components in Java EE 8, for...