Java Enterprise Edition 5 (JEE5) is a specification defining a collection of Java-based technologies and how they interoperate. JEE5 incorporates a set of technologies, including EJB3, JPA, JSF, etc. Numerous implementations are available in the form of both commercial products and open source ...
20
votes
6answers
10k views
Real world comparisons of Glassfish and JBoss 5?
Does anyone have experiences with both in the real world? How do they compare in terms of performance (memory usage, speed, etc)? Stability?
Does JBoss Seam work well on Glassfish?
10
votes
11answers
1k views
J2EE — is it just fluff or the real stuff?
I'm familiar with the LAMP stack and over the years have successfully deployed a handful of web sties based on it. I've used everything from Apache + modPerl, to PHP, to Ruby and Rails. With good use ...
8
votes
4answers
2k views
How do you unit test Java EE code?
I want to ask for your prefered way to test Java EE code?
I found only three project, that are trying to help to code unit tests in Java EE environment:
http://jakarta.apache.org/cactus/ : Last ...
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
5answers
3k 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 ...
5
votes
2answers
222 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 of Sun at this time.
...
5
votes
5answers
2k views
Any data-driven open source JEE5 EJB3+JSF Sample Project out there?
I am looking for an open source project that uses EJB3 as backend and JSF as frontend. It should not be a tutorial but a real application that real people are using.
The application should be ...
4
votes
3answers
203 views
Object suddenly missing from HttpServletRequest
I print a list directly in the servlet using the print writer and the list prints.
When I try to put in the jsp however the list doesn't print whether I use JSTL or scriptlets.
I tried to test in ...
4
votes
4answers
607 views
Architecture guidebook for Java web application?
I'm looking for some good books/internet material that discusses on how to make decision on architecture for a Java web application, discuss on various considerations etc.
I found this "J2EE ...
3
votes
2answers
349 views
How to get all the LDAP groups for a particular user?
I have a weblogic server using an external LDAP as Provider for authentication.
I than need to recover the groups that a specific user has associated with in an LDAP repository.
The login uses ...
3
votes
2answers
1k views
JSF J_security_check How to get number of connected users and their role?
I get the username of the connected user (using j_security_check) this way, through a managed bean:
......
username = ...
3
votes
1answer
2k views
Navigate to the Same Page After Action in JSF 2
I have a component done in JSF 1.x, this component has a command button as follows
<h:commandButton ... action="#{templateController.next}" />
Where templateController was passed as an EL ...
3
votes
1answer
1k views
Cron syntax with Java EE 5?
Timer Tasks in Java EE are not very comfortable. Is there any util, to configure timer with cron syntax like "0 20 20 * * "?
I wonder, if it would be a good way to use Quartzinside (clustered) JEE ...
3
votes
3answers
555 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 read all data and fail ...
3
votes
2answers
790 views
MVC framework for huge Java EE application
Which MVC-framework is the best option (performance/ease of development) for a web application, that will have + 2 million visits per week.
Basically the site is a search engine,but also there will ...
2
votes
2answers
52 views
Classloader Filtering
I have asked a related question before - but this is not exactly the same. I was told earlier not to ask additional questions in the same thread if the issue is a bit different. So I am posting this ...
2
votes
1answer
76 views
Can not find getFlash() method in Myfaces
FacesContext.getCurrentInstance().getExternalContext().getFlash()
I am trying to use above code seems like getFlash() does not exist in JSF2 implementation of Myfaces. How how can I access it.
...
2
votes
1answer
261 views
@Resource annotation not working properly with JBoss5.0.1
I'm tring to deploy my app in JBoss 5.0.1. Some of my beans in this app are using @Resource annotations. If i understood the problem, my guess is JBoss is tring to process this annotation before ...
2
votes
0answers
896 views
Jsf DataModel vs Java List problem ( no row available exception )
In JSF 1.2 One was listing Items using Java List :
private List<Customer> customerItems = null;
, but in JSF 2.0 JSf DataModel (ListDataModel) is the way to go. (I am using JSF 2.0)
private ...
2
votes
3answers
2k views
PrimeFaces fileDownload does not work
I can't get the primeFaces <p:filedownload work. While I succeed in downloading the file using a custom download bean. Seems like the issu is related to the primefaces file download ActionListener ...
2
votes
2answers
433 views
Request scoped context for stateless session beans
Is there a request-scoped context for EJB3 session-beans? My environment is Java-EE-5.
This example
@Remote(SessionFacade.class) @Stateless
public class SessionFacadeBean implements SessionFacade {
...
2
votes
1answer
366 views
send mail code not work for java EE 5 web project
I am using myeclipse 7, where i have added java EE 5 libraries witch i required.If i add the mail.jar externally to the application, it calling the javaee.jar from java EE 5 libraries.It's not using ...
2
votes
4answers
117 views
Porting a JMS application to MQ
Today if we build an application using the JMS API (using MDBs as message listeners, host it on lets say GlassFish or Weblogic 10) and tomorrow lets say the traffic goes crazy, can we port this ...
2
votes
2answers
951 views
Java EE 5 programmatic authentication
How I can authenticate a user from JSF action (or in servlet doGet/doPost methods)?
I mean something like:
Authenticator auth = ...;
if (!auth.authenticate("user","password"))
{
...
2
votes
1answer
2k views
EJB3 beans JNDI lookup in Websphere 7
I have created an EAR with a web project, ejb3 project and the ejb client. I'm able to call the bean methods via injection in the servlet.
I'm planning to use a ServiceDelegate which is a pojo to ...
2
votes
2answers
962 views
Using EJB in Wicket WebPage
When I'm using @EJB annotation to access stateless EJB through remote interface in common HttpServlet, it works OK:
public class ListMsgs extends HttpServlet
{
@EJB
private Msgs msgsRI;
...
...
2
votes
1answer
237 views
Interface between two related JPA entities
The scenario is as below (tables shown)
Delivery table
------
id channelId type
10 100 fax
20 200 email
Fax table
----
id number
100 1234567
101 1234598
Email table
-----
...
2
votes
2answers
1k views
Code review checklist/guideline for a Java web application?
Anyone have a code review checklist/guidelines for a Java web application? A review checklist for each layer would be great.
If there is no such source on the internet, do you know of any good books? ...
2
votes
1answer
1k 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?
2
votes
3answers
933 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 applications.
This ...
2
votes
1answer
97 views
Configurable persistence in Java EE5+
There are 2 ways of using a persistence unit, code or annotation.
CODE
[..]EntityManagerFactory emf;
emf = Persistence.createEntityManagerFactory("SOMEPU");[..]
or
ANNOTATION
[..]
...
2
votes
2answers
2k views
How can I best connect Seam and GWT in a stateful web application?
We have a web application that was implemented using GWT. What it presents is fetched from a Jboss/Seam server using the remoting mechanism, and this works fine. However, the application is now ...
1
vote
0answers
36 views
how to use JPA in a worker thread?
I'm using WebLogic 10.3.5.0 with JPA 2.0 and have the following scenario:
user needs to start a task takes some time to complete;
this task needs to read and write to DB;
One solution would be to ...
1
vote
0answers
12 views
Authorization problems with Embedded Glassfish 3.1.1
I'm using Embedded Glassfish to deploy a JEE 5 web application. Using version 3.1 I was successful to:
Deploy it in a normal (not embedded) environment;
Based on the 1st step, create an embedded ...
1
vote
1answer
50 views
Can GWT 2.4.0 run with Java EE5?
We use WebSphere 7.x (It supports Java ee 5). We want to use gwt 2.4.0 and it's feature - gwt RPC.
GWT RPC mechanism causes to use servlet in server side (which works only by extending ...
1
vote
0answers
59 views
what's is the best way to initialize log4j with EJB 3.0?
I have an EAR who has only EJBs (EJB3.0) and with out a WAR module, the server is JBOSS 4.3 over linux.
I want to initialize LOG4J with a log4j.properties file outside the server and use slf4j as ...
1
vote
1answer
65 views
JPA Entiy on synonym instead of table
I have a Seam 2.2 based JEE 5 web application with a bunch of tables mapped to JPA 1.0 Entities via Hibernate 3.3.3. During development it's running on a Tomcat 6, Oracle 10 XE and Windows 7.
Now, we ...
1
vote
0answers
47 views
JavaEE 6 and connection between two EJB by @Remote
I have two EJB
One EJB has Remote interface
Second EJB try to connect to One EJB by Remote.
Under Geronimo EE 5 works fine but Geronimo EE6 fails
https://issues.apache.org/jira/browse/GERONIMO-6232
...
1
vote
1answer
49 views
how to convert http request to JSON object in javaee5
I want to convert request xml to JSON string. which framework is better to use? jettison, jackson, json-org,... and also how can I do this?
Any idea?
thanks
Afsaneh
1
vote
0answers
152 views
how to get client ip for different kinds of clients
How Can I get client ip in an ejb interceptor? My application is based on javaee5 and is deployed on glassfish and it has different kind of clients (ejb/MDB/jax-ws webservices) and I have a default ...
1
vote
0answers
54 views
Deployment runs forever
I am trying to deploy an app onto Google App Engine localhost but it hangs during the deployment process.
Any idea what I can do?
Thanks,
Tarlo
1
vote
2answers
104 views
How are POST parameters handled in Spring 3 when some are in URL?
I typically retrieve POST parameters like the following:
@RequestMapping(method = RequestMethod.POST)
public ModelAndView create(
@RequestParam(value = "first_name", required = false) String ...
1
vote
1answer
59 views
How can I improve this design that calls third party methods from JSF based front end
I want opinions and expert advice on design .
I am developing an application using JSF2 and EJB3 and I am not using CDI.
I have been given an API (jar) from an other team and there are three main ...
1
vote
2answers
390 views
EJB3 & How JAAS subject/principal is propagated to EJB Tier from servlet container?
I'm trying to understand how the JAAS principal propagates to the Business/EJB tier from web tier.
I've read that the if the roles/realm is configured in login-config & security-context of ...
1
vote
1answer
57 views
Cache values in Java EE
I'm building a simple message delegation application. Messages are being send on both ends via JMS. I'm using a MDB to process incoming messages, transform them and send them to a target queue. ...
1
vote
1answer
51 views
How can I receive the persistence unit name of an EntityManager?
In a Java EE application I am using @PersistenceContext on an EJB3.0 SessionBean to let an EntityManager be autowired.
As I am using multiple Datasources, I want to programmatically determine the ...
1
vote
0answers
53 views
Can't execute embedded Glassfish App at Apple platform
I'm having a problem running an JEE5 application at GF 3.1 Embedded at Apple computers... (the same environment works at Linux and Windows). The server starts ok, but when loading the APP the server ...
1
vote
3answers
746 views
JSF Active Sessions counter. How to?
Good evening,
In a test JSF 2.0 web app, I am trying to get the number of active sessions but there is a problem in the sessionDestroyed method of the HttpSessionListener.
Indeed, when a user logs ...
1
vote
1answer
134 views
Is it safe to cache DataSource lookups in JEE?
I'm developing a simple Java EE 5 "routing" application. Different messages from a MQ queue are first transformed and then, according to the value of a certain field, stored in different datasources ...
1
vote
1answer
141 views
JMS application client can create more than one active sessions while web/ejb components cannot?
I am reading the JEE5 tutorial for JMS.
And I am having a hard time understanding the reason for this 'general rule':
A general rule in the Java EE platform specification applies to all Java EE ...