Tagged Questions
1
vote
1answer
31 views
What are the steps in writing Desktop client for Jboss 7.1
I recently created standalone client for Glassfish 3.2, now I want my application to be deployed on JBoss. I am interested in answer which will guide me to build standalone application which will ...
0
votes
1answer
139 views
Why can't the JNDI name be configured in the ejb-jar.xml file?
While working with an EJB application, why do we require an extra deployment descriptor such as jBoss.xml to configure the JNDI name? Can't we do the same in the ejb-jar.xml file itself?
6
votes
1answer
212 views
Java EE 5 dependency injection?
Since Java EE 5 does not have CDI, how does DI work in here?
Can an EJB be injected with @EJB in a class that is a non-EJB?
Can an EntityManager be injected with @PersistenceContext in a class that ...
1
vote
1answer
271 views
Google Guice. Inject EJB when using Java EE5
It is possible to use Google Guice (any other DI framework) for injecting EJBs in Java EE 5? By default Java EE 5 uses JNDI to injecting EJBs.
0
votes
2answers
191 views
@EJB Dependency Injection failed
I am trying to use @EJB annotation to call a stateless bean. When I print the value of the reference, it is NULL . Please help me, I am completely confused as to what to do next...
Code :
@Local
...
0
votes
1answer
423 views
EJB 3.0 timer bean timeout called multiple times in glassfish
We have to implement EJB 3.0 timers and we took the following approach:
we created @Stateless beans and injected the TimerService with the @Resource annotation
we have implemented a servlet which ...
0
votes
1answer
81 views
Need help to learn web services/web apps [closed]
I have been working as a Java developer for past 5 years with products completely developed in core Java and Java Swings. Now I have moved to a new company where I would be doing similar work at the ...
0
votes
1answer
186 views
Stateful bean injecting stateless bean, will they both use the same instance of EntityManagerFactory?
I have a Stateful Bean injecting a JPA PersistenceUnit and another stateless bean. The stateless bean is injecting the same PersistenceUnit as well. My question is, will the EJB container inject the ...
3
votes
1answer
420 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 ...
0
votes
2answers
232 views
Globally accessible property in EJB
I have a JavaEE application that needs to access a file in order to obtain certain informations about the installation.
This access is read-only, I do not need to change that file within the ...
1
vote
1answer
105 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
3answers
1k 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 ...
3
votes
2answers
1k 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 {
...
1
vote
1answer
745 views
JBoss stateless session bean as web service url
On JBoss 5.1.0, when I have an EJB3 stateless session bean exposed as a web service using the @WebService annotation in a jar it gets deployed successfully to the following url:
...
0
votes
1answer
815 views
Which is the best way to handle exception in java MDB?
I got this use case:
Here the class diagram
Here the sequence diagram
This diagram represents an enterprise model. Java EE technology on Weblogic 10.3 with the leverage of spring framework for IoC ...
2
votes
1answer
3k 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 ...
1
vote
3answers
492 views
Stateless Session Bean
Do I package a stateless session bean in a war file or a ear file for deployment?
1
vote
0answers
337 views
Ejb refrences another ejb
I have two EJBs , EJB A references EJB B, both are deployed to the same server.
Each time I try to deploy EJB A it tries to register EJB B which is already deployed and registered which causes error: ...
0
votes
2answers
268 views
How is it to return a very long list from ejb3 session bean?
I have a ejb3 session bean and a servlet. The bean have access to a database with some big table. The servlet should retrieve the table's content from the bean and send data through ...
2
votes
2answers
1k 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;
...
...
1
vote
1answer
881 views
ClassCastException When Calling an EJB Remotely that Exists on Same Server
I have 2 ejbs. Ejb-A that calls Ejb-B. They are not in the same Ear.
For portability Ejb-B may or may not exist on the same server. (There is an external property file that has the provider URLs of ...
2
votes
1answer
480 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
-----
...
1
vote
3answers
212 views
Enterprise Application
I am thinking about a platform for study application (it is team work). I mean standard Java EE 5 (or maybe try raw Java EE 6) and Spring. What is your choose? (I don't mean Spring MVC but Spring ...
14
votes
4answers
6k 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 ...
7
votes
4answers
6k 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 ...
0
votes
1answer
429 views
Java EE deployment patterns resourses
I'm looking book/online resources about Java EE application deployment pattens. Especially I want to know patterns when to use local interfaces when remote ones (how many nodes I need to?). The key ...
0
votes
3answers
458 views
Which development environment to use for developing Java EE and EJB 3?
I have to work with a project in which it is mandatory to use Java EE and EJB 3. Can anyone suggest the best development environment for development of these technologies?
And any useful links with ...
2
votes
2answers
2k views
How to hide RuntimeException details from EJB client?
I have a JEE5 application that exposes services using (local) session beans.
When an internal fault occurs during service execution, a RuntimeException is thrown and encapsulated by JBoss(5.0.1) in a ...
0
votes
3answers
575 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/myBean. It is up to the ...
0
votes
1answer
493 views
Spring 2.5 in EJB container
I would like to use the spring framework within an EJB3 project. In detail I would like to use the JDBC template class which should be instantinated from a given data source. When I put the spring.jar ...
0
votes
1answer
350 views
EJB3 - handling non-standard link tables
I have a situation where I am working with EJB3 and a legacy database. I have a situation where there is a many-to-many relationship between two tables A and B, defined through a third (link) table L.
...
1
vote
2answers
2k views
JBoss 5 AS and EJB3 bean injection from servlets?
It was my understanding that JBossAS 5.x supported EJB3 bean injection in servlets with the @EJB3 annotation. I'm using the default configuration for JBossAS 5.0.1.GA and it's not working. I've added ...
