This tag is used for question related to the session bean and message-driven bean component types of the EJB 3.0 programming model. For questions about the persistent entities defined in the document "Java Persistence API" of the EJB 3.0 specification, use the [JPA] tag.
0
votes
1answer
20 views
JPA: How can I Select @Embeddable Class
I will select all the columns from @Embeddable Class Certification. But i cann't select it. how can i do select the Embeddable class.
@Entity
public class Department implements Serializable {
...
0
votes
0answers
6 views
getting remote exception while calling an ejb3 method
method(){
try{
some code..
}
catch(Exception e)
{
throw new userDefineException();
}
}
// while calling the above method from the java client I am gettine remote exception but i am expecting ...
1
vote
1answer
11 views
What is the life of @Stateless EJB injected into JSF @SessionScoped?
I'm converting some code to take advantage of EJB 3 and I've come up with a scenario where I have a @Stateless EJB being injected into JSF Managed bean that is annotated with @SessionScoped.
I was ...
2
votes
0answers
16 views
JSF2 with EJB3 and JPA - how best to package
I'm trying to teach myself a bit about EJB3 and JPA by creating some functionality that uses JSF2 as a front end, stateless EJB3 session beans to handle transactions and JPA to persist entities.
...
0
votes
2answers
38 views
best way to persist date as string
How to best persist Date property as string property of ejb3 entity?
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package entities;
import ...
0
votes
0answers
11 views
EJB denpendencies not found during glassfish startup
I've deployed an EJB module to Glassfish 2.1 and declared a library, which is located in the lib/applibs dir, as its dependencies.
That works during deployment of the EJB module. The classes from ...
0
votes
1answer
20 views
What are the main differences between EJB 2.0 and EJB 3.0 in the orientation of an object
I want to try EJB and I am studying the theory behind EJB 3.0. I know that in EJB 3.0 you don't have to use deployment descriptor but you can use annotations, and also you don't have to write Home and ...
0
votes
1answer
54 views
A simple hello world program in EJB3
I'm new to EJB. I am using Netbeans 7.3 to create a simple hello world application. I've tried and tested the code but I couldn't figure out where I go wrong. The sayHello method does not print. ...
0
votes
0answers
20 views
primefaces creating a dynamic dashboard
Following the example at http://www.wobblycogs.co.uk/index.php/computing/jee/49-dynamic-dashboard-with-primefaces im trying to create a dynamic dashboard.
Copying the code works 100% perfeclty, but ...
0
votes
0answers
14 views
Weblogic EJB error “Commit can be issued only when there are no requests awaiting responses”
Working with EJB 3.0 and WebLogic and getting an error that's driving me insane!!
I have a stateless local session bean that conform to the following interface
@Local
public interface ...
0
votes
0answers
36 views
EJB3 deployment descriptor. How to define two EJBs?
From tutorials I learn that for providing environment variables (env-entry) for EJB 3.0 we simply can use this:
<enterprise-beans>
<session>
...
1
vote
0answers
12 views
How to / where to find info on JBoss client dependencies? Any documentation?
It may be pretty basic question. But no luck Googling.
I was going through this URL. Because I had an issue accessing EJBs deployed on JBoss. After following this, it worked. Mainly this line.
...
1
vote
2answers
27 views
Separate jar for EJB3 Entity classes
When I separate my EJB3 entities (annotated with @Entity) from my EJB Module and put them in a separate jar file, where should my Persistence.xml file go, in my EJB module or in my entities.jar? And ...
0
votes
2answers
39 views
How to auto login by a cookie with JSF/EJB/JBoss
I'm using JBoss 7.1.1, JSF2.0, EJB 3.1.
I'm trying to auto login a user when re-visiting. (Not a full login, but at least I give him his customized views - I would never let him/her invoke a ...
0
votes
2answers
47 views
EJB3 injection into JSF managed beans failed
i am developping a maven enterprise application using netbeans, glassfish3.1, EJB3 and JSF2.
I want to inject a DAOFacade EJB into a JSF managed bean but it does'nt work.
here is the error message:
...
0
votes
0answers
29 views
Why must EJB Timer share a database connection in a cluster?
I have a singleton EJB bean with a timed method that saves statistics to the database once every minute. The bean holds statistics individually on each cluster node, so it is important that it saves ...
0
votes
0answers
19 views
JBoss 4.2.2 MDB Long Running OnMesage
I am attempting to use an MDB (onMessage) to run a long running JDBC sql query and export the output to disk.
I am running into timeouts with the onMessage because the acknowledge takes place after ...
0
votes
2answers
21 views
Persisting entities
I am just getting started with EJB development, so I created a test system that consists of the following three projects:
Actually, the HelloWorldBeanRemote interface does also exist in the EJBTest ...
2
votes
0answers
19 views
OpenEJB - replace the “classpath.ear” by other name
The app I'm working have a custom ServiceLocator, so, I need to be able to specify the name I want for the app.
In other words, instead of bind the EJB's to:
...
1
vote
2answers
61 views
EJB - Lookup failed for 'ejb/BookRequestBean'
I am new to EJB, and was trying "Hello World" type of EJB Java program. Here is my EJB:
package dukesbookstore.ejb;
@Stateless(name="BookRequestBean", mappedName="ejb/BookRequestBean")
@Named
public ...
0
votes
1answer
35 views
How to Merge Two Dates in EJB JPA
I am try to Merge Two Dates, Current Date and Another Date in EJB With the help of JPA
it's my class UserBean
in this class i am prepare one method setExpireDate.
This Method are use for merge two ...
0
votes
3answers
80 views
EJB modules cannot find class from another EJB module on glassfish
I have an EJB 3 module deployed on my Glassfish 2.1 server.
I'm trying to deploy a second EJB module, which depends on this first module, but the deployment fails with java.lang.NoClassDefFoundError ...
1
vote
2answers
37 views
Using GWT with Enterprise JavaBeans
I need to build frontend using GWT and use EJB as backend technology, but i am not able to find out enough information on how to go about it . It will be really good if some one can guide me through ...
-1
votes
0answers
19 views
facing error when deploying my project on glassfish server
friends, i need ur help,i am working on a project with netbeans which is implementing entities and java persistence api , there is no problem in coding but when i m deploying it on my glassfish server ...
0
votes
1answer
32 views
EAR cannot find EJBs in other EAR (WAS shared lib issue)
I've got an EJB set up in my entity-layer-EAR:
<session>
<ejb-name>DoctorDaoImpl</ejb-name>
<business-local>mypath.DoctorDao</business-local>
...
1
vote
1answer
38 views
Alter database design with JPA
I am working on database with JPA and i am curios about altering the database design. Lets say i have a table and i want to add/remove a column in that table.
I have tried with re-deploying ...
0
votes
0answers
40 views
error in building maven project through jenkins
I am using jenkins for continous integration of maven builds.
I am getting the following error
Error occurred during deployment: Exception while deploying the app
[Projectname] : Cannot resolve ...
0
votes
0answers
34 views
maven project not building through jenkins
I am using jenkins for continous integration of maven builds.
I am getting the following error
Error occurred during deployment: Exception while deploying the app [Projectname] : Cannot resolve ...
0
votes
0answers
24 views
Redirecting with parametres
in my managed Bean i have a methode which redirect me to an xhtml page
My xhtml page load a php code which simply for now display the parametres send
so this is who it works.
in the methode of ...
0
votes
0answers
83 views
java.lang.IllegalStateException: No EJB receiver available for handling (…)
I'm new with JBoss and I'm having some issues to lookup remote EJBs from other JBoss instance.
Well, I tried to lookup an EJB in a standalone and it worked, only put my jndi.properties in the src and ...
0
votes
0answers
35 views
Redirect from xhtml page to php
I have a xhtml page where there is many command button
and on wamp/www/ I have a PHP file which display a google map.
this is my try
In my main page xhtml I put this
<h:commandButton ...
1
vote
0answers
37 views
@RolesAllowed and web-tier in Java EE 6.0
I have a web application with a set of security constraints. Web app calls ejb modules annotated with @RolesAllowed and everything's fine - once authorized, user's credentials being passed to ejb and ...
0
votes
1answer
42 views
web service test ejb3 passing as Date parameter
My web service looks like
import entities.Expense;
import java.math.BigDecimal;
import java.util.Date;
import javax.ejb.EJB;
import javax.jws.WebService;
import javax.ejb.Stateless;
import ...
0
votes
1answer
64 views
Error on JMS Queue because of destination in websphere used by Message Driven Beans
I am getting the following error:
Application EBS_Calc#EBS_Calc_EJB.jar#MBIntegrations has an , useJNDI, for which there is no corresponding property on the ActivationSpec class ...
1
vote
1answer
41 views
Spring OpenentityManagerInViewFilter alternative
Beacause of the issues mentioned in :
Why not to use Spring's OpenEntityManagerInViewFilter
and
http://heapdump.wordpress.com/2010/04/04/should-i-use-open-session-in-view/
I'd like to use an ...
0
votes
1answer
49 views
Updating entities in Extended Persistence Context
I have a form - Workflow where there are fields like wfName, assignedUser, dueDate, turnAroundTime. etc.
It is backed by an entity Workflow with a reference to the User entity as Many-to-One.
When a ...
0
votes
1answer
56 views
EJB 3.0 Managed bean injecting and db connection closing
In the ejb 3.0 jboss 6 environment, I have a bean called DBInterface that is injected into many dao classes to execute the sql queries. the DBInterface bean has the datasource injected as a field ...
0
votes
0answers
13 views
inject jboss module name into an ejb
I am developing a stateless EJB to be deployed on JBoss 7. What I need in the ability to , a access the module and application name of the same deployment in which my EJB is located (to handle the ...
0
votes
1answer
96 views
getting exception when retrieving data from database org.hibernate.hql.ast.QuerySyntaxException:
Iam new to JPA, iam trying to create EJB 3.0 + JPA (hibernate) application. When iam persisting data into database getting below exception.
sessionBean method:
@PersistenceContext
private ...
1
vote
1answer
30 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 ...
1
vote
1answer
45 views
Call ejb3 existing in a module from a war in JBOSS as 7.1
I have a problem while trying to call my ejb3 existing in JBoss 7 module from my war file. Please have a look on following details-
Here is Local interface-
package ...
1
vote
1answer
147 views
getting Exception - java.lang.IllegalStateException: A JTA EntityManager cannot use getTransaction()
Iam new to JPA, iam trying to create EJB 3.0 + JPA (hibernate) application. When iam persisting data into database getting below exception.
SessoinBean method
@PersistenceUnit private ...
0
votes
1answer
86 views
Failed to create remoting connection
Good Day!
I am doing migration from glassfish to JBoss 7.1.3 . I have .ear application which fails to create remoting connection.I guess having problem with my EJB.
Below is my EJB that deployed ...
0
votes
0answers
53 views
accessing EJB in seperate EAR on same Server - Websphere 7
On WebSphere 7, I have an EAR deployed (CustomerEAR.ear) which contains some EJBs.
Up to now, I had a demo servlet which called the ejb methods to populate the underlying db tables. That all worked ...
0
votes
1answer
82 views
Getting Error - javax.naming.NamingException: ejb ref resolution error for remote business interfaceretail.ejb.service.CustomerSessionBeanRemote
iam getting below error when calling the ejb from jsf application
javax.naming.NamingException: ejb ref resolution error for remote business interfaceretail.ejb.service.CustomerSessionBeanRemote ...
0
votes
1answer
32 views
EJB - Pass Contextual Data from JSF to EJB
A have a new feature that forces me to pass some new data structure to my EJBs.
This is a user session context that has some information about the current user.
How can I pass this data to my EJBs ...
0
votes
0answers
27 views
jpa query get entity with their all childrens
I have got entity something like that:
public class Group{
@Id
private int id;
@JoinColumn(name = "PARENT_ID", referencedColumnName = "ID")
@ManyToOne
private Group parentid;
...
0
votes
0answers
34 views
EJB + JSF on RSA
I'm creating a sample project which was built on :
Front End: JSF
Buisness layer: EJB3
Persistence: JPA
DB: DB2
I'm working on RSA(Rational software Architect) which is originally an eclipse
my ...
0
votes
0answers
42 views
CDI Injection failed on parent abstract class
is there a problem injecting a session scope named component in a parent abstract class?
Here's the setup:
I have an interface:
@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Target({ ...
0
votes
0answers
32 views
EJB 3.1 Transactions with Spring JDBC
I have a EJB (3 Sessionbean for rest WS)and Spring JDBC for DAO to call ORACLE procedures. I am wondering how EJB transaction handling works with SPRING JDBC.
Today I am going to try this... But ...



