1
vote
3answers
108 views
Spring vs EJB. Can Spring replace EJB?
Since Spring is able to use transactions just like EJB. For me, Spring is able to replace the requirement of using EJB. Can anyone tell me what are the extra advantages of using EJ …
3
votes
5answers
94 views
+100
Where can I find good unit testing resources for EJB and J2EE?
Which online resources, tutorials or books can you recommended to get started with unit testing J2EE / EJB3 applications?
So far I have found ejb3unit, Jakarta Cactus and the Mave …
0
votes
1answer
21 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
26 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 …
3
votes
9answers
112 views
How to develop a Desktop Application when you only know EJB3 JPA and JSF ?
Hello everyone !
For almost a year know, i developped applications in EJB3/JPA for persistence and business and Seam/JSF for presentation.
I had an idea for a desktop app, but i …
1
vote
1answer
50 views
translating outer join SQL query into EJB entity beans
I'm new to EJB and trying to get my head around translating SQL concepts to EJB entity beans.
Suppose I have two tables: PEOPLE (id, name), CONTACT(pid, phone_number). If I wan …
1
vote
2answers
72 views
Why use stateful session beans?
I'm learning ejb3 and I'm just curious when it's convenient to use SFSB? I can't find any nice example when SFSB realy solve easily some complex problem.
Actually I see that SLSB …
0
votes
1answer
25 views
weblogic 10.3: EJB JAR is getting deployed as “Library” and not “EJB”
In Weblogic 10.3, the JAR containing the EJB below along with the persistence file, is deployed. But Weblogic deploys it as Type "Library" instead of an "EJB", which is not what I …
2
votes
3answers
61 views
why pool stateless bean?
Normally we use singleton instance for business / dao layer. What is the reason behind pooling stateless session beans in case of EJBs?
0
votes
0answers
23 views
Weblogic 10.3.1 gives ‘Dependency injection failure’ warning when publishing code
Weblogic 10.3.1 gives me a "Dependency injection failure" when I publish my code; the publish itself succeeds. I am working via Eclipse.
Basically I publish an ear with a web ser …
0
votes
0answers
21 views
Some limitations about EJB 3.0 and Toplink framework
I have project use EJB 3.0 and implement Toplink framework for model layer.
When using EJBQL to process data, I see it seems have some limitation:
It cannot process datatime suc …
0
votes
1answer
41 views
Jboss Message Bean (EJB3) - configuration name
Is there a way of specifying the configuration name of a message bean through annotations?
In the jboss.xml descriptor you can have different configurations and bind the beans to a …
0
votes
1answer
17 views
EJB help needed
public void runTest() throws Exception {
InitialContext ctx = new InitialContext();
ResourceManager bean = (ResourceManager) ctx.lookup("ejb/ResourceManagerJNDI");
S …
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
4answers
588 views
JNDI lookup of EJB3 inside an EAR file on Glassfish
I have an EAR file with a bunch of JARs in it, and one of these JARs contains Local Session Beans (EJB3). I need to perform a JNDI lookup of these Session Beans from within an unma …
