0
votes
1answer
19 views
Custom resource in @Resource annotations added at runtime
Hello, I want to be able to do something like this in a stateless Session Bean
@Resource(name="mycustomthingie") private CustomClass stuff;
The value injected is context (speak: …
2
votes
1answer
24 views
Examples or Uses Cases to explain EJB Transaction Attributes
There are some good explanations of EJB Transaction Attributes (and annotations) out there, for example, OpenEJB's.
But sometimes when I try to cover this with someone who hasn't …
2
votes
7answers
159 views
Which is better to continue Java EE or Spring Framework?
I am not so much experienced on enterprise systems but i have some experience on Spring framework.I start to think open source framework such as Spring,Hibernate start to become de …
1
vote
1answer
20 views
Spring MVC Annotations with Global Context context:component-scan?
I have a spring dispatcher servlet with servlet-name "spring-mvc". The spring-mvc-servlet.xml appears as follows:
<bean id="viewResolver"
class="org.springframework.web.se …
0
votes
1answer
30 views
Problem with persisting data in Google Application Engine
Hi, we are having a hard time persisting data in our google app project, we have the classes "Customer" "Reservation" and "Room".
Our goal is to map a relation between these, wit …
1
vote
3answers
43 views
How do I convert an Ant Path into a FileSet?
I'm writing an Ant script to package a project into a WAR file. The software consists of several projects with their own source directories, libraries, etc.
The WAR task has a nes …
3
votes
8answers
130 views
Which J2EE web development framework to choose for a simple, accessible application?
Hi everyone,
I want to write a simple web application, on J2EE, with these characteristics:
I don't need any AJAX, and it should even work with JavaScript disabled on the browse …
0
votes
3answers
39 views
java beans: difference between persistent field and persistent property?
I got the impression that if we use persistent fields, there is no need for getter methods since the entity manager references the instance variables directly. However, when I remo …
1
vote
2answers
65 views
JNDI and javax.sql.DataSource
I'm someone that used to do some J2EE coding in the past and I'm coming back into the fold to work on a new J2EE project. A lot has changed since 2001, so I need to ask this very b …
3
votes
3answers
102 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 …
1
vote
3answers
24 views
JUnit View in Eclipse on OSX Snow Leopard
I recently purchased a mac and am trying to get junit tests working on Eclipse. I am using the latest Galileo, but for some reason there is no option to "run as junit" on the tests …
0
votes
1answer
29 views
afterTransactionCompletion not working
I created an hibernate interceptor :
public class MyInterceptor extends EmptyInterceptor {
private boolean isCanal=false;
public boolean onSave(Object entity, Serializable arg1, …
0
votes
2answers
42 views
How to Generate an ELContext without an active FacesContext?
I need to get access to EL functionality in a Servlet Filter, but... that means I am not within the FacesServlet lifecycle.
Thus, I need to instantiate an ELContext. I do not want …
0
votes
1answer
33 views
Eclipse .classpath file. How to control server name entry?
I'm using Eclipse Galileo with a kind of well known plugins to develop Java Enterprise Applications. Now having a Java Project, Eclipse writes the following line to the .classpath …
0
votes
5answers
81 views
Avoid using a DB for storing small set of data on a Java EE App
I have a small JSF app and would like to keep some state on the server, without using a DB. It will just be a small string for every user so I don't see the point in deploying an R …
