Antun Horvat

Greenhorn
+ Follow
since Aug 25, 2011
Antun likes ...
PHP Redhat Java
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Antun Horvat

Hi guys I am in a need of fast solution to my probably not unique problem.

I am developing intranet application based on the Java EE6 standard and I've found myself in problematic situation.
In this project maven is used as default build tool, and within this maven project I have defined other maven projects that represent EAR modules.

Now the problem is that these EAR modules depend on each other which is an issue when I'm trying to deploy WAR module in isolation from other modules. I understand that I can not do such a thing but is there a way to redeploy only part of EAR into already deployed EAR container? In such situation upon deployment container would find depended EJB classes (from EAR) and inject EJB dependencies into managed beans.

If there is an such solution I would be able to easily hot deploy development changes into Glassfish 3.1 without huge deployment delays.

I am also aware of remote EJB interfaces and JNDI but i don't want to deal with these if i really don't have to

bdw. i'm new to whole java ee thing....