Top "Java-ee-6" questions

Use this tag for questions relating specifically to Java Enterprise Edition 6.

Is it possible to @Inject a @RequestScoped bean into a @Stateless EJB?

Is it possible to inject a request-scoped CDI bean into a Stateless session bean? I had asked a related question …

jakarta-ee java-ee-6 cdi ejb-3.1 stateless-session-bean
EJB 3.1 application deployed as WAR-only: What about ejb-jar.xml?

I have a JavaEE6 application, consisting of Web stuff and EJBs and which is deployed as WAR-only (using EJB3.1). The …

java jakarta-ee java-ee-6 ejb-3.1
How to inject a Session Bean into a Message Driven Bean?

I'm reasonably new to Java EE, so this might be stupid.. bear with me pls :D I would like to …

glassfish cdi java-ee-6 ejb-3.1 glassfish-3
how create a Word document from a template or existing document with Java?

I have a document template where some fields are static and others are dynamic. I need to replace some data (…

ms-word apache-poi java-ee-6 .doc
Is it possible to define a jax-rs service interface separated from its implementation (with eclipse and jersey)?

I don't know if the title is confusing, but let's say I have this interface: @Produces(MediaType.APPLICATION_JSON) @Path("/…

java jersey jax-rs java-ee-6
Maven Jboss archetypes catalog on eclipse m2e

Just a simple question since I cannot find the correct url on the Jboss AS 7 started guide. When I'm creating …

maven jboss java-ee-6 maven-archetype
How to inject a non-serializable class (like java.util.ResourceBundle) with Weld

I want to create a Producer that makes it possible to inject a java.util.ResourceBundle into any class in …

jakarta-ee java-ee-6 cdi jboss-weld
ARJUNA016053: Could not commit transaction - JavaEE6 Timer

We have a timer that triggers a job and do some import / export processing. But on commit we open encounter …

transactions java-ee-6 entitymanager timer-jobs
httpOnly Session Cookie + Servlet 3.0 (e.g. Glassfish v3)

By default, Glassfish v3 doesn't set the httpOnly flag on session cookies (when created as usual with request.getSession()). I …

java servlets jakarta-ee glassfish java-ee-6
Java EE @TransactionManagement.BEAN - how does it combine with container managed beans?

How will the transaction started in callSessionBean2() behave in the following scenario? Is it suspended? What happens if an exception …

transactions java-ee-6 session-bean