Tagged Questions
1
vote
0answers
17 views
EJB error: prePersist constrainvalidationexception
My mind is messed up because I'm not able to figure out what it's happening , I have as follows:
editar.xhtml
<h:form>
Id: <h:inputText value="#{guardarBean.id}" />
...
0
votes
3answers
65 views
why should java beans be used?
I am new in j2ee and want to know about java beans. I have one java class, and use an instance of that class in another class. What are the reasons I should define the first class as a java bean and ...
0
votes
1answer
72 views
Unable to resolve org.eclipse.persistence.exceptions.EntityManagerSetupException
I am trying to run the maven project, i am able to deploy the project but after deploying the project when i click any function to perform an operation it shows following exception:
root cause:
...
0
votes
0answers
48 views
Display particular data record using JSF <h:commandLink>
I have a list of books which are stored in database. when i click any one record to see the details of that book, it displays all the book details stored in database. Following figures shows more ...
0
votes
1answer
29 views
Hi guys, i want to know to work with ejb entity bean. must i deploy ejb entity bean in ejb container
i want to know to work with EJB entity bean. must i deploy EJB entity bean in ejb container.
but i have seen some projects my friends working use java persistence api with EJB entity bean,
but they ...
0
votes
1answer
632 views
javax.ejb.CreateException: Could not create stateless EJB
I'm using netbean 6.7.1 Glassfish v2.1 ...
I'm trying to create message driven bean.
App A (using session bean, create map message) --> App B (message driven bean located here).
@Stateless
public ...
2
votes
1answer
85 views
Standalone EJB client local statless session bean lookup
As per my references the @Local session beans are accessible under same JVM which where the bean is deployed(client & server running on same JVM).
I have implemented a simple statless local ...
-1
votes
1answer
67 views
error while creating session bean
i am trying the 'Hello World! with Remote Stateless Session Bean'example with glassfish3+ and netbeans 7.2 and while creating a session bean i have an error stating-"there is no suitable project ...
0
votes
1answer
110 views
Accessing Enterprise Beans through a Remote Interface with @EJB
I have an interface like this:
@Remote
public interface ClientDataAccessRemote
And the EJB implements it:
@Stateless
public class ClientDataAccess implements ClientDataAccessRemote
And in the ...
1
vote
1answer
70 views
Entity class is a JavaBean?
I am newbie for learning Java EE and still many concepts confuse me. I found an entity class looks like a JavaBean.
Is an entity class a JavaBean? (please explain something here)
What is the ...
0
votes
0answers
118 views
How get bean from EJB context
I try to create some converting system which scan all classes in some package. Find there all Methods with specific (for example @Converter) annotation save it and then invoke.
So with help of ...
1
vote
2answers
380 views
glassfish 3.1.2 monitoring EJB container, bean-methods
the glassfish application server provides a nice monitoring REST interface.
To use it u can enable several monitorable items in the admin console, for example the EJB container. The documentation ...
0
votes
1answer
589 views
Java EJB org.apache.jasper.JasperException: java.lang.NullPointerException
I created an EJB application for a Online DVD Store.
I use Netbeans 7.2.1 and Glassfish 3.1.2
When I run index.jsp, the interface it is launched successfully, if I click on a form submit button I ...
0
votes
1answer
51 views
What is the local stateless bean good for?
Is there any reason to use Local Stateless beans in a Java EE application?
The interface of the bean is available via the factory design pattern.
3
votes
1answer
254 views
Occasional 'EJBTransactionRolledbackException: Transaction rolled back' errors hanging the application
Application is hosted in JBoss6 (version 6.0.0.Final).
In production environment I see sometimes the following errors:
2012-10-01 17:59:00,290 ERROR ...
0
votes
1answer
123 views
EJB-Annotations Questions
I'm new to JavaEE and EJBs.
I made my first few steps with it but there are quite a few things about the basic annotations, that I don't get, no matter how much time i spend googling and reading ...
1
vote
1answer
118 views
Exclude dates in scheduleExpression
I have an EJB timer with timing specified in a scheduleExpression. Is there a way to exclude a list of dates in the schedule, i.e.:
Do not run on weekends and some list of other dates?
1
vote
1answer
1k views
Glassfish 3/EJB 3. Standalone java client
i'm developing an application on top of netbeans API using Glassfish 3.1.2. My netbeans application is supposed to be my standalone java client that have to connect to the EJB.
I have packaged my EJB ...
1
vote
0answers
634 views
EJB. When I call a Session Bean with var List throws: this javax.ejb.EJBException: java.rmi.MarshalException
I created a java web project in netbeans, I created my entities beans and later deployed my project to generate my Database, this work was successful.
Then I generated my session beans to access the ...
1
vote
1answer
124 views
What makes enterprise beans 'heavyweight'?
I have read numerous times that EJBs are heavyweight...yet last night I was going through the Java EE 6 tutorials on EJBs and they seem to be just regular Java objects, except they can have ...
2
votes
2answers
604 views
Injecting a SessionScoped Stateful bean in EntityListener
I'm trying to implement some sort of auditing in a Java EE JPA application on GlassFish 3.
I have added a @EntityListeners annotation on my @MappedSuperclass entity, the listener has the @PrePersist ...
0
votes
0answers
41 views
my ejb cannot be annotated in my war project
i wanna ask, why i cannot use @EJB annotation in my Class in war project when i need that bean. For example i cannot do this :
@EJB
private UserLocal userLocal;
it will return java.lang.Nullpointer ...
0
votes
1answer
87 views
Statefull Session Bean updates(?) on buttonclick
I'm fairly new to Java EE and I'm building a simple webshop using maven web application . I have a problem with my Statefull Session Bean. I've been searching the net and tried different ...
0
votes
2answers
93 views
why nullify instance variables when destroying a stateful EJB?
In an example of the @remove annotation on a stateful EJB, the annotated method nullifys the bean's instance variables. Why? Surely destroying the bean destroys its contents, i.e. any variables?
...
1
vote
2answers
134 views
Returning a Stateful Java Bean from a Stateless Bean?
I want to handle a login scenario as follows:
Client connects to a Stateless Java Bean (SLJB) and tries to login;
If login succeeds, the SLJB returns to the user a Stateful Java Bean (SFJB), so that ...
3
votes
1answer
3k views
@Singleton in java EJB
I have a EJB that need to be a singleton and statful since its going to be a sort of connection pool. My question is this: if I define a EJB with @Singleton annotation will it then be stateful by ...
1
vote
1answer
3k views
Where can I find a complete EJB tutorial?
I want to begin with EJB from scratch. I'm looking for a proper tutorial. A video tutorial would be ideal.
3
votes
2answers
465 views
Java EE 6 : @Inject and Instance<T>
I have a question about the @Inject annotation in java ee 6 :
What is the difference between :
@Inject
private TestBean test;
@Inject
private Instance<TestBean> test2;
To have the reference ...
0
votes
1answer
148 views
Using GWT's “shared” folder for storing EJB beans
It is possible to use GWT's "shared" folder for storing beans, that will be used by EJB, GWT servlet and gwt client(javascript) side?
1
vote
1answer
365 views
Strange EJB behavior or am I missing something???
Here is a very strange behavior using EJB beans:
@Local
public interface Provider {
void test();
}
@Local
public interface ExtProvider extends Provider {
void test2();
}
public abstract ...
0
votes
1answer
587 views
Spring equivalent of EJB Stateless bean
In EJB because of performance reasons beans should be stateless, then application server can maintain pool of beans and assign them to requesting clients.
What is Spring equivalent for such type of ...
3
votes
1answer
3k views
Missing Dependencies JBoss 5.1
I've just started a Java project, using JBoss, having EAR, ejb and war projects. My team mate has developed an Datas.java servlet class, which injects using @EJB notation an ejb session bean called ...
4
votes
2answers
2k views
Using a Stateful Session Bean to track an user's session
it's my first question here and I hope that I'm doing it right.
I need to work on a Java EE project, so, before starting, I'm trying to do something simple and see if I can do that.
I'm stuck with ...
2
votes
1answer
282 views
updating an object in spring webflow not showing up on the UI
I'm really getting confused because I'm pretty new to this whole topic. I'm currently developing a project using spring webflow. In my webinterface a user has to type in a username that is than ...
3
votes
1answer
847 views
session scoped managed bean vs stateful bean vs httpsession
i need a way to save a user chosen configuration composed of different parts. each part is chosen on a separate page, from a list supplied by a managed bean (one per part type).
now the fun part. i ...
0
votes
1answer
47 views
EJB call a method between two beans
I have got two Beans. One Stateful and one Stateless. Now I want to call a method, which is in the stateless bean, from the stateful bean. How can I do this? The stateless bean has also got an ...
0
votes
1answer
615 views
Java Inject Applicationscope Bean
I try to inject a applicationScoped Bean.
I found similar topics at JSF2 ApplicationScope bean instantiation time? and
JSF - get managed bean by name
With the jsf way in faces context all is fine ...
3
votes
3answers
367 views
How to redeploy an EJB Project without restarting the server
I'm new to JBoss Seam and Java web app development in general. One thing that I cannot figure out while going through a few tutorials is how to redeploy beans that I've made changes to in an EJB ...
0
votes
1answer
135 views
EJB - Can you use a bean within a bean
For example, can I do the following
@Stateless
@LocalBean
public class MyBean extends AbstractFacade<MyBeanEntity>
{ @PersistenceContext(UnitName='myPU")
private EntityManager em;
...
1
vote
1answer
3k views
Problem injecting ejb into managed bean
I've made a simple application to test this problem i'm having in small scale. I've got an ejb:
@Local
public interface PersonaDAO {
public void sayHello(Persona persona);
}
@Stateless
public class ...
0
votes
1answer
209 views
J2EE, Entity Bean - User1 extends User
I've created a new Entity Bean, called User.
I would like to extend it, making some new Entity Beans called User1 (and User2, User3, and so on.. which represent the user type/group).
User1 has the ...
0
votes
1answer
57 views
My JSP is using EL its not getting the getLocation property
The class 'Beans.SidePanelBean' does not have the property "getLocation" is the exact error.
I'm follow the naming convention accordingly (I think) and I am still getting this error.
My JSP
...
0
votes
1answer
717 views
Remote invocation in EJB 3.0
I'm new to EJB 3.0 and trying out the DI with my ejb's.
I'm using WAS 7.0 as my appserver and I have two EAR's deployed on it. Both have ejb 3 session beans and I need to invoke an ejb in ear 2 from ...
1
vote
2answers
2k views
How to call a EJB session bean from PHP?
Is there any way to call an EJB session bean from PHP? Are there any specific functions to do that?
0
votes
1answer
243 views
How to access session bean in EJB
I'm new to ejb. I've created the session bean in one computer. And i want to access that session bean from the another system. How to do this?
Thanks in advance :-)
2
votes
3answers
5k views
Difference between Java Bean and Enterprise Java Beans?
Are they different or they are used interchangeably? If they are Different, then what made them different from each other?
2
votes
1answer
261 views
Call a method of session beans that deployed on the remote machine
I wrote a EJB session beans and deployed it on the GlassFish application server. i can call it easily with @EJB annotation from a local JSF web application but i dont know how to call it from a JSF ...
1
vote
1answer
382 views
Using a bean class from a servlet in a Java EE application
I just started to study Java EE and made some examples (Just Hello World and some a bit more complicated). Now I'm doing a small application myself for learning purposes. I made an EAR, an EJB and an ...
1
vote
2answers
255 views
What is the need of a Custom Persistence Framework in Java?
We have a custom Persistence Framework wrapping the Entity Beans. I want to know why is this required or does it have any performance improvement when we already have Entity Beans (CMP) why the ...
1
vote
0answers
513 views
JBoss Bean Statistics in Web-Console
I would like to use the JBoss web-console to view bean statistics. I read in a book ("JBoss: A Developer's Notebook") that bean invocation statistics are visible when drilling down through ...

