Tagged Questions
Use this tag for questions relating specifically to Java Enterprise Edition 6.
42
votes
18answers
16k views
Java EE 6 vs. Spring 3 stack [closed]
I'm starting a new project now. I have to choose technologies. I need something light, so no EJB or Seam. On the other hand I need JPA (Hibernate or alternative) and JSF with IceFaces.
Do you think ...
34
votes
3answers
25k views
Best way for user authentication on JavaEE 6 using JSF 2.0?
I'm wondering what the current state of art recommendation is regarding user authentication for a web application making use of JSF 2.0 (and if any components do exist) and JEE6 core mechanisms ...
24
votes
1answer
868 views
Does a JCA 1.6 ResourceAdapter need a ManagedConnectionFactory?
I have written a JCA resource adapter before.
However, now I find myself in a position of having to write one solely to get access to the BootstrapContext and its associated WorkManager, and ...
17
votes
1answer
2k views
Where's the official JSP tutorial
I now have to remember how to create custom tag libraries, and since I'm using servlet 3.0 I decided to see the official JavaEE6 tutorial. Much to my surprise there is nothing about JSP in the JavaEE6 ...
14
votes
6answers
1k views
JEE6: Switching to CDI - Best resources
I have a small yet complete JEE 6 application at hand.
The traditional annotations are being used: @Resource, @EJB, @Singleton, @PostConstruct, @PreDestroy, @PersistenceContext, @ManagedBean, ...
12
votes
4answers
698 views
Multi tenancy support in Java EE 6
I have an existing Java EE 6 application (deployed in Glassfish v 3.1) and want to support multiple tenants. Technologies/APIs I'm currently using in my app are
EJB (including the EJB timer service)
...
12
votes
2answers
578 views
What are the best debugging tricks with Weld/CDI?
One of the beauties with Java EE 6 is the new dependency injection framework - CDI with the Weld reference implementation - which has prompted us to start migrating internally to JSR-330 in an ...
11
votes
2answers
319 views
A methology that allows for a single Java code base covering many different versions?
I work in a small shop where we have a LOT of legacy Cobol code and where a methology has been adopted to allow us to minimize forking and branching as much as possible.
For a given release we have ...
10
votes
3answers
11k views
Differences between JPA and JPA2
Does anyone have a list of the changes between JPA 1 and JPA 2?
I have read about the Criteria queries and other changes, but I would like a "what's new" kind of reference.
Thanks
9
votes
3answers
408 views
Is CDI a good replacement of Spring?
We are planning to write a web application from the scratch, it has been decided to go with the latest edition of Glassfish which complies to JEE 6 standard, therefore we are analyzing if CDI can be ...
9
votes
2answers
2k views
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? Are there redundancies between them?
I know there are annotations associated with ...
9
votes
4answers
2k views
Servlet 3.0 asynchronous
What's the diffrent between servlet 3.0 asynchronous feature against:
old servlet impl
doGet(request,response) {
Thread t = new Thread(new Runnable()
void run(){
// heavy processing
...
9
votes
1answer
896 views
Where can i find a list of all the reference implementations for JEE6?
Do you know if there is a list with all the reference implementation for every component of JEE6? I.e. Glassfish is the reference container, Hibernate Validator for validation, etc.
8
votes
2answers
907 views
what does this error mean: org.hibernate.DuplicateMappingException?
I'm trying to force JPA/Hibernate to generate and use only lowercase tablenames. I've implemented a NamingStrategy like this:
public class MyNamingStrategy extends DefaultNamingStrategy {
...
8
votes
2answers
751 views
How to model in Java EE / JEE?
Let's say, I have decided to go with Java EE stack for my enterprise application.
Now, for domain modelling (or: for designing the M of MVC), which APIs can I safely assume and use, and which I ...
8
votes
3answers
1k views
Inject EJB into domain object with Java EE 6
How can I inject an EJB into a domain object (an JPA entity) with Java EE 6?
7
votes
2answers
4k views
Can't instantiate javax.servlet.ServletException
I am trying to create instance of class javax.servlet.ServletException with following code
public class MyTroubleViewer {
public static void main(String[] args) {
javax.servlet.ServletException ...
7
votes
5answers
7k views
EJB 3.1 @EJB Injection into POJO
Being a complete turbot this afternoon and cant seem to find the answer anywhere.
With the new EJB 3.1 spec is it possible to inject an EJB into a pojo? I know in EJB 3.0 the @EJB annotation could ...
6
votes
1answer
442 views
JSF2.0 doesn't support cross-field validation, is there a workaround?
JSF2.0 only allows you to validate the input on one field, like check to see if it's a certain length. It doesn't allow you to have a form that says, "enter city and state, or enter just a zip code."
...
6
votes
2answers
1k views
QuartzScheduler injection in JBoss AS 6
How can i inject QuartzScheduler service into my Stateless bean on JBoss AS 6 ?
Quartz service does start during JBoss AS 6 startup
00:58:38,025 INFO [QuartzScheduler] Scheduler meta-data: Quartz ...
6
votes
2answers
401 views
What is the difference between @Inject and @EJB
I'm currently learning the new Java EE 6 component models and am confused with the latest dependency injection mechanism. So here are my questions:
1) What is the difference between @Inject and @EJB
...
6
votes
5answers
831 views
Java EE 6 and alternatives
I am a Java SE developer but I have rich web-background (PHP, Perl/CGI and so on) and now I am starting new project. It will have web interface, spaghetti business logic, relational database as ...
6
votes
2answers
2k views
How to set JSF2 <welcome-file> with faces servlet mapping?
I have a simple JSF2 app using Facelets. My web.xml is set as follows:-
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
...
6
votes
3answers
328 views
Is it illegitimate to name an JPA entity “Group”?
I'm developing a JEE6-application, using JPA 2.0 and Hibernate 3.5.2-Final as the Provider (and MySQL 5.1.41). My Application Server is Glassfish V3.0.1.
I already have a working CRUD-app with some ...
6
votes
2answers
2k views
Difference Hibernate 3.5 / JPA 2.0
So far, I always prefered to use Hibernate directly rather than JPA 1.0, because JPA was lacking some of the important features I needed and Hibernate provided: Criteria API, second level cache, ...
6
votes
1answer
2k views
How to implement authentication mechanism in Java EE 6
I'm trying to learn Java EE 6 and i'm just wondering how to implement authentication mechanism in Java EE 6.
Here is the Java EE 6 authentiction example:
public void login() {
if ...
5
votes
2answers
126 views
Using EJBContext getContextData - is this safe?
I am planning to use EJBContext to pass some properties around from the application tier (specifically, a message-driven bean) to a persistence lifecycle callback that cannot directly be injected or ...
5
votes
1answer
88 views
Spanning user information across multiple EJBs
With javax.security.Principal you can retrieve the user information at any point by injecting the EJBContext with @Resource.
What I am trying to do is add extra information which would be specific to ...
5
votes
1answer
507 views
Cannot run arquillian tests
I'm trying to use Arquillian for some unit tests, however I can't find why they fail when deployed using Maven.
This is the class test:
package com.ndeveloper.spec.test;
import javax.inject.Inject;
...
5
votes
1answer
220 views
Disabling EJB Timer (Glassfish 3.1, JEE 6)
We have a VIP (BIG-IP) that actually moves the web service requests to two nodes each with its own glassfish server 3.1 and our services deployed. So it is not a true glassfish cluster.
My problem is ...
5
votes
5answers
513 views
Should I go for Spring or stick with Java EE 6?
I will be finishing the core Java course and now I have to move on to Java EE side.
I am so much confused that I should simply go with Java EE 6 because I have the books which easily teach from start ...
5
votes
1answer
660 views
Are JEE 6 CDI events transactional?
Are Java EE 6 CDI events transactional?
If I fire an event in a transaction, and subsequently roll back the transaction, are the effects of the Event listener rolled back as well?
Is this ...
5
votes
3answers
330 views
EJB testing strategies?
I'm working on a Java EE 6 application. When I started out, I was writing tests for my EJB classes by manually instantiating the EJB, then manually adding the members that normally get provided by ...
5
votes
2answers
3k views
Good JavaEE book? [closed]
Possible Duplicates:
Best Java book you have read so far
Could you please suggest any good books for Java EE
J2EE Book Recommendation
Assuming I already know the JavaSE basics, what ...
5
votes
1answer
462 views
how to use new scala 2.8.0 nested annotations
looks like when scala 2.8.0 is out, we can use nested @annotations in our persistence layers. But how? Can anyone please transform this from java to scala? Thanks.
@NamedQueries({
@NamedQuery(name ...
5
votes
1answer
1k views
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 order to get localized Strings easily. My ResourceBundle-Producer looks like this:
public ...
5
votes
5answers
2k views
Differences between Java EE 6 CDI Implementations
I've looked at JBoss' Weld Reference Implementation of JSR-299 Contexts and Dependency Injection, and I wanted to know how others CDI implementations compare to each other.
Specifically, I know about ...
5
votes
3answers
1k views
Java EE6 over EE5?
We are at the edge of getting Java EE6 (with Glassfish v3 as reference implementation). Planned release is December 09. While still quite a number of companies are struggling to move their codebase to ...
5
votes
4answers
6k views
How do you call List.size() from a JSF 2.0 Facelets Template?
What is the syntax for calling list.size() in a JSF 2.0 Facelets template (eg, using an h:outputText element)?
4
votes
5answers
492 views
Where to put super() or this() in my classes
I have a Servlet class I made to handle functions I don't want to repeat on every Servlet I have. I'm still working on it (i.e. it still only loads index.jsp and not other files).
public class ...
4
votes
1answer
151 views
@Asynchronous not resulting in async invocation of EJB method in JBossAS7
I'm struggling to figure out why an @Asynchronous method in my EJB isn't actually being invoked asynchronously. I'm running on JBoss AS 7 using CDI (with beans.xml) in a JSF2 project with simple .war ...
4
votes
1answer
218 views
JEE6: What can be injected with @Resource?
I'm trying to find out, what can be injected via the @Resource annotation into a Stateless Session Bean. Where would I find a list? Does it depend on the container (in my case it's Glassfish 3.1.1)?
4
votes
1answer
215 views
Newbie question about Java EE 6 and CDI
I'm just starting to learn CDI and Java EE 6, but I found this piece of code that I want to fully understand.
@Stateful
@Model
public class MemberRegistration {
@Inject
private EntityManager ...
4
votes
3answers
181 views
Is there something analogous to Springs @Transactional annotation available in JEE 6?
In my company the usage of the Spring framework is discouraged and instead JEE 6 is promoted. But recently I read about Springs @Transactional annotation at Using @Transactional and think this could ...
4
votes
3answers
208 views
e-commerce in java(My Baptism of fire)
I am working on a JEE6 project for some client, he asked me to create a very simple e-commerce shop.
I am not very familiar with money transfers online, I want to allow the customers to be able to ...
4
votes
1answer
1k views
JEE6 JPA 2 ManyToOne Relation Creates Invalid Foreign Key
I am trying to create two entities where both entities have embeddedIds. One of the entities have 2 references to the other entity, where both of those references are related as ManyToOne.
Example ...
4
votes
2answers
846 views
How can I implement “CSS versioning” (to solve cache issues) using JSF 2 h:outputStylesheet?
I'm starting to work with JSF 2 so I wanted to give a try to h:outputStylesheet. It works fine but then I tried to apply the "pattern" or trick of adding a query string to the request which changes ...
4
votes
2answers
768 views
EJB 3.1 - Using @EJB inside an EJB - is it possible?
Is it possible to use @EJB inside another EJB? I'm trying to do this now, and my EJB is ending up null. I'll outline my problem in an example.
@Stateless
@LocalBean
@Local(LoginServiceLocal.class)
...
4
votes
5answers
513 views
RESTful Web Development With Java EE 6 - what are the options?
I'm trying to figure out what the best options are for developing a RESTful web application with Java EE 6. For example, I want to be able to interpret a URL like so:
GET www.myapp.com/customers/1 - ...
4
votes
1answer
410 views
Using CDI + WS/RS + JPA to build an app
@Path(value = "/user")
@Stateless
public class UserService {
@Inject
private UserManager manager;
@Path(value = "/create")
@GET
@Produces(value = MediaType.TEXT_PLAIN)
public ...