Top "Java-ee-6" questions

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

What's the difference between standalone and domain on JEE6?

I'm starting an JBoss to use on the development, and I'm using it as standalone. I read that on the …

java jboss java-ee-6 jboss7.x
How do CDI and EJB compare? interact?

I'm having a tough time understanding how the two interact and where the boundary between them lies. Do they overlap? …

java ejb java-ee-6 cdi
Use Enum type as a value parameter for @RolesAllowed-Annotation

I'm developing a Java enterprise application, currently doing Java EE security stuff to restrict access for particular functions to specific …

java jakarta-ee enums annotations java-ee-6
Java EE 6 @javax.annotation.ManagedBean vs. @javax.inject.Named vs. @javax.faces.ManagedBean

I feel there is a little mess in the Java EE 6 spec. There are several sets of annotations. We have …

java jakarta-ee java-ee-6 cdi
Application is not starting in websphere 8.5.5 but works fine in tomcat

I have a web application which can be deployed in tomcat but the same application is not starting in websphere 8.5.5. …

java websphere java-ee-6 guava websphere-8
Java EE 6 vs. Spring 3 stack

I'm starting a new project now. I have to choose technologies. I need something light, so no EJB or Seam. …

java spring jsf jakarta-ee java-ee-6
How to get DataSource or Connection from JPA2 EntityManager in Java EE 6

I have a working application where I use Java EE 6 with EclipseLink for persistence and a PostgreSQL database. For the …

java jpa jdbc java-ee-6
Glassfish DeploymentException: Error in linking security policy for

I have been trying to deploy my web application (war) from Glassfish AdminConsole but I keep getting the following error …

security deployment glassfish java-ee-6 netbeans7.0
How to set up manifest class-path properly in maven-war-plugin

I've used the maven-ear-plugin with the maven-war-plugin and maven-ejb-plugin to successfully deploy and run an application packaged as EAR to …

maven java-ee-6 ear
what is the right path to refer a jar file in jpa persistence.xml in a web app?

persistence.xml looks like this: <persistence-unit name="testPU" transaction-type="RESOURCE_LOCAL"> <provider>org.hibernate.ejb.HibernatePersistence&…

hibernate jpa persistence java-ee-6 war