0
votes
3answers
53 views
@Cache annotation usage error
I added the following annotation to enable cache to one of my EJB3 entities, to test caching with ehCache, where I use Hibernate as the persistence provider:
....
import org.hiber …
3
votes
3answers
103 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 mo …
5
votes
2answers
139 views
Proposing Glassfish to customers
With Sun being taken over by Oracle, Oracle will arguably gain control of Glassfish.
I do understand that Glassfish is community driven but most of the contributions do come out o …
1
vote
5answers
87 views
Relationship between JSP and JEE/J2EE
Is JSP part of the whole JEE/j2EE package? How are they related?
0
votes
2answers
134 views
Struts2 + jQuery - Sending regular updates to the client
Hi,
I am implementing a functionality in my web app such that a client can generate the report by entering some data and clicking on the submit button.
The problem is that report …
1
vote
1answer
135 views
JSF button to reset the session
Is there a way to reset (clear) the session for a user, when he clicks on a button?
0
votes
1answer
63 views
JEE deployment patterns resourses
I'm looking book/online resourses about JEE application deployment pattens. Especially I want to know patterns when to use local interfaces when remote ones (how many nodes I need …
0
votes
4answers
862 views
ICEFaces Session Auto-Extension
I have an application in which users frequently leave the page running in their browser all day. The page has an intervalrendered that updates data every 30 seconds.
However, if …
0
votes
2answers
132 views
How to implement pessimistic locking in JPA with Glassfish 2.1?
When trying to setup a lock (pessimistic), with the following code:
em.lock(controlnumbers, LockModeType.WRITE);
em.refresh(controlnumbers);
I am getting the following exception …
0
votes
1answer
97 views
Can I inject a SessionBean into a JEE AroundInvoke-Interceptor?
I have an EAR with modules:
foo-api.jar
foo-impl.jar
interceptor.jar
In foo-api there is:
@Local
FooService // (interface of a local stateless session bean)
In foo-impl ther …
0
votes
1answer
60 views
Why JEE is widely used in complicated projects?
Hi.
Yesterday me and my friend we've had nice conversation about IT and he asked me WHY JEE is so widely used when it comes to build complicated IT systems? From my point of view …
0
votes
3answers
104 views
Which development environment to use for developing JEE and EJB 3?
Hi all,
I have to work with a project in which it is mandatory to use JEE and EJB 3. Can anyone suggest the best development environment for development of these technologies?
And …
0
votes
2answers
117 views
Migration solution for singletons in an OSGI environment
I'm working in a JEE Environment in which each application is in a war file of its own.
In the WEB-INF/lib of each application war file there is a common jar that is shared by all …
0
votes
3answers
134 views
@EJB injection and the Enterprise Naming Context - relation between the two.
The JEE specification states that an EJB injection like this:
@EJB MyInterface myBean;
will create en entry in the Enterprise Naming Context, viz. java:comp/env/.MyInterface/myB …
3
votes
3answers
121 views
How do I configure tomcat to handle bad HTTP clients?
We're running jBoss 5.1, which in turn uses the Tomcat servlet container.
We've been seeing some cases where bad HTTP clients will open a socket, make an HTTP request, fail to rea …
