javaee-spec
javaee-spec copied to clipboard
Java EE Platform Specification
All "default" resources (like UserTransaction, SessionContext), injectable with @Resource in Java EE 6 should be also injectable with @Inject as well.
currently the @Stateless, @Stateful annotations look like: @Target(value = {ElementType.TYPE} ) @Retention(value = RetentionPolicy.RUNTIME) public @interface Stateless {} I would like to extend the @Target of all @Stateless, @Stateful, @Singleton...
Java EE should add the ability to specify per-application logging configurations.
Many Java EE implementations offer support for clustering, but clustering behavior and configuration isn't specified by the Java EE platform. The behavior when clustering is used should be more fully...
We should specify what the valid characters are in JNDI names. Is it ASCII? Full Unicode? Are certain characters like NUL and backslash illegal? We ought to at least set...