Tagged Questions
0
votes
0answers
9 views
Unable to retrieve EntityManagerFactory (JPA)
I tried to write a simple application using the YPA, but when retrieving data from a database error occurs:
java.lang.IllegalStateException: Unable to retrieve EntityManagerFactory for unitName null
...
0
votes
2answers
19 views
How can I make this sql query with jpa ?
I'm trying to create a query in my entities.
I have these following tables in mysql DB :
Categorie : id, nom ...
Article : num_code_barre_, categorie ...
In my entity Categorie :
...
@Id
...
0
votes
0answers
16 views
Measuring how many transactions are done on JTA application
I had a web software running in a Jboss AS 7 container witch saves our data in a PostgreSQL 9.1 database via JPA, an its configuration delegated to JTA.
Last year it was adapted to run at AWS EC2 ...
0
votes
1answer
29 views
Retreive initial data from EJB in View Scoped JSF Managed Bean
It seems that an EJB(stateless) cannot be injected into a View Scoped JSF Managed Bean.
Doing so gives a com.sun.faces.mgbean.ManagedBeanCreationException:
...
0
votes
1answer
25 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:
...
1
vote
1answer
30 views
Unable to generate tables from entities
I'm trying to use JPA Tools in Eclipse in order to Generate tables from entities.
This states that I should perform several action in order to do something similar (creating Entities from Tables). I ...
0
votes
1answer
33 views
@OrderBy annotation cannot order by sub relation
If There is a relation like this:
entity A (one) ---> (many) entity B (one)---->(one) entity C
And current JPA entity A has following relation definition:
@OneToMany(mappedBy = "A", fetch = ...
0
votes
0answers
11 views
Throw TraversableResolver.isReachable() only on one of the three databases, other two are fine
I run the same application on local oracle database and testing db A, no problem when persisting a series of entities, but when comes to db B, when try to persist one of the entities, the server gives ...
0
votes
2answers
26 views
What kind of transaction context does an injected EntityManager have in an EJB whose transaction context is TransactionAttributeType.NOT_SUPPORTED?
Suppose I have an EJB that is annotated with:
@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
Suppose further that it has an EntityManager injected into it:
@PersistenceContext
...
0
votes
2answers
29 views
Hibernate is trying to add null to ID when using EJB
I am using Entity Manager to persist.
If I use JPA stand alone in Java Application it works fine but when I try to run through EJB I get following
Hibernate: insert into public.student (id, country, ...
0
votes
2answers
54 views
Java EE DAO without EJB
Is it possible to create a DAO in Java EE environment, which uses JPA, but does not need to be a Stateless bean? I am asking because I have a huge number of EJBs, just because I need a few @Resources ...
0
votes
1answer
58 views
How to get Glassfish/EclipseLink/JPA to cache entityManager.find results that return null
I though I had a problem where JPA/EclipseLink was not caching my entity objects in the L2 shared cache, because when I repeated a request I would get SQL statements hitting Derby. As I debugged this ...
-2
votes
2answers
46 views
Database Communication in JSF/EJB (theoretically) [closed]
I'm currently writing my diploma thesis and I'm stuck at the Database Communication topic. My problem is not the implementation, but rather the architecture behind JSF. I read a lot about it, but ...
0
votes
0answers
51 views
Marshalling Error: failed to lazily initialize a collection of role (…), no session or session was closed
I`m using Eclipse RCP with EJB exposed like WebServices. My services beans looks like follows
@Override
@SuppressWarnings("unchecked")
public List<Author> listAll() {
final Query query = ...
0
votes
2answers
34 views
Does it worth to put entity under @Transactional service layer if just for searching?
In Spring MVC, I put most JPA entity (from domain layer) manipulation under service layer and for most CRUD actions, I have to make that service method or class @Transactional.
But, just thinking, ...
0
votes
0answers
29 views
No datasource connection: Unknown service requested: ConnectionProvider(Hibernate)
I have a project EJB/JPA with Hibernate on Glassfish and I can not establish a connection to the datasource that I have properly configured(ping succeeded!) on glassfish.
When my application tries to ...
0
votes
0answers
55 views
Update entity with JPA 1.0 and Hibernate after change database value
I'm working on a Java project with EJB 3.0. I'm using JPA 1.0 and Hibernate as persistence provider.
The problem is: when I change a value in the database, I can't see the change until I restart the ...
0
votes
2answers
56 views
Does a new transaction detach all previous entities?
Let's say we have the following piece of code:
@Entity
public class User {
@Id
private String name;
@OneToOne(cascade = CascadeType.ALL)
private Address address;
//getters and ...
0
votes
1answer
29 views
EJB Entity will not refresh from EntityManager
So I'm developing a webapp and Im attempting to use JPA in order to access my database. I grab entities from my database using an EJB however, if I get another instance from the EJB and make changes ...
0
votes
1answer
52 views
data is not getting insterted into database, but not getting any exception
Iam working on ejb + JPA (hibernate) application.
When i insert the data into database, its not getting inserted. But no error is thrown from sessionbean.
below is code.
@PersistenceContext private ...
0
votes
1answer
56 views
EntityManager from container in SpringBeanAutowiringInterceptor-created context
I have an EJB that's annotated as follows:
@Stateless
@Interceptors(SpringBeanAutowiringInterceptor.class)
The SpringBeanAutowiringInterceptor creates a ClassPathXmlApplicationContext which in turn ...
1
vote
1answer
38 views
Duplicate ClassLoaders generated per persistence-unit on Websphere
We're running an EAR on WAS 8.5, and every one of our DAOs are duplicated 31 times. Noticing our persistence.xml has 30 JNDI datasources, I tested reducing the number, and indeed the duplicate count ...
0
votes
1answer
73 views
Java - Sync different entities between Client-Server database (JPA2+EJB3)
can someone help me plz?
i am trying to get a synchronization between N "clients" database to 1 Big "Server" database (kind of repository/backup database).
Its ok, i got a way to make their sync ...
1
vote
1answer
65 views
Auto retry after EJB transaction rollback
Basically, I have a JMS queue and an MDB to collects the messages from the JMS queue, does some processing on them, and then persists the messages into the database via JPA. I marked the method, which ...
0
votes
0answers
29 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
2answers
55 views
JPA: check whether an entity object has been persisted or not
Is there a general method that can
if(entity is persisted before){
entity = entity.merge();
}else{
entity.persist();
}
So the method contain above logic is safe everywhere?
0
votes
0answers
41 views
Correct usage of shared EntityManagerFactory across multiple EJB bundles on GlassFish
I'm building a new Java EE app which will run on GlassFish. I'm creating the APIs and functionality as OSGi bundles which will be deployed to GlassFish.
From what I can tell, I can no longer do this ...
0
votes
2answers
133 views
use session bean to insert data with JPA
In a servelt, I try to call the session bean method to insert data to database via JPA. The insert process is written in the session bean.
I tried another example, which I select data from DB. The ...
0
votes
0answers
67 views
sorting primefaces treeTable from recursive table in database
I'm using primefaces 3.4.2 and I want to load in a tree table a recursive table from my database. How can I do this?
My recursive entity :
`@Entity
public class Application implements Serializable {
...
0
votes
1answer
41 views
Merge method doesn't make LAZY fetch mapping available
Here is a simple One-to-Many relationship: Order to Items. One order can have many items within. And there is an association table ORDERITEMSMAPPING between the two entities, following relation is ...
0
votes
2answers
236 views
Serializing JPA entities to JSON using Jackson
Question regarding combination of Jackson/JPA
If there are about 20 entities in current application and I have add Jackson dependency in POM, does it mean all entities are by default ready to ...
5
votes
2answers
143 views
@Stateless webservice with JPA+JTA: How to commit changes of managed entity?
I have the following simple webservice declared as @Stateless EJB running on GlassFish 3.1.2.2 with EclipseLink 2.4.1 using a JTA DataSource to connect to a MySQL database:
@POST
...
0
votes
1answer
47 views
How to get entityManager by using an entity class
How to reach the entity manager which managed the entity. I mean; suppose that i have an entity reference in the sessionBean, how can i get entityManager of this entity belonged one?
I had already ...
0
votes
0answers
52 views
Asynchronous EJB method returning unexpectedly with no useful error message
I am trying to perform a batch operation through an Asynchronous EJB method. This is how my EJB looks like shown below. If i run somemethod() synchronously (with the @Asynchronous annotation) it works ...
0
votes
0answers
83 views
Spring MVC with EJB 3.1 and JPA 2
I have a project that only uses Java EE 6 for services and persistance. I´m now going to add a web project ontop of this that will show the gui and only communicate with EJB service layer. Are there ...
0
votes
0answers
129 views
Why transaction can't commit in a self-invoked ejb method with @REQUIRES_NEW Annotation
First I want to explain my self-invoked ejb method in this situation. I have a stateful session bean with a method which starts a new transaction (Annotated by @REQUIRES_NEW). To invoke this method ...
1
vote
0answers
72 views
Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: user lacks privilege
Seems that I don't know what I lack. After running JUnit Test, a got this
Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: user lacks privilege or object not found: DTB_TABLENAME {Insert ...
0
votes
2answers
46 views
Using EJB transaction, when I insert a record in a main outer transaction, I can't find it in the inner transaction(Annotated by REQUIRES_NEW)
My goal is inserting a record into my database, then updating it in a new transaction.
I try it like this:
@PersistenceContext(unitName="Table")
private EntityManager manager;
@EJB
private ...
0
votes
1answer
93 views
JPA: stateless session beans and managed entities
Lets assume I have an JPA Entity called Foo with a String myStr property;
When I now define a stateless session bean like this:
@Stateless
@LocalBean
public class FooBean {
...
0
votes
1answer
63 views
JPA : Differences between modified detached entity and original one
Building a web application using EJB & JPA in JSF I'd like to know how I can get modified fields of an entity.
Let's take an easy example :
@Entity
@Table
public class User implements ...
0
votes
1answer
75 views
Failed to Catch Hibernate OptimisticLockException
I'm using EJB 3 with Hibernate.
I have a stateless session Bean. There is a method deleteItem in that bean.
When a client call the deleteItem method then delete occurred without any problem.
But If ...
0
votes
1answer
253 views
JBoss Deployement Issue - Cannot deploy this Jar
I am trying to deploy an application in jBoss and I'm getting this issue. I am trying to deploy a jar and I'm getting the issue.
Attached complete log:
...
0
votes
2answers
126 views
ServletContextListener scheduler carry out a task - then stalls on EJB method call to persist into a database in JBOSS 7.1
I have a ServletContextListener that runs a tasks every 20 seconds - That task is to listen on a folder and check for new files and if found import the new file into a database. This is set up using ...
1
vote
1answer
103 views
EJB Exception - An attempt was made to traverse a relationship using indirection that had a null Session.
This is not a new exception. I went through lot of forum posts in stack overflow and understand why this is happening. But I need help in resolving my issue.
I have two entity beans Equipment class ...
1
vote
1answer
51 views
JPQL Query for Java EE Project
I am a beginner in JPQL queries and I don't understand how can I translate an SQL query in a JPQL query:
I have 2 tables:
Customer(idCustomer,...,idMacroMarket)
...
2
votes
1answer
187 views
Inject BeanClass to ServletContextListener thats running continously in JBOSS 7.1
I have a ServletContextListener that is running on start up of my JBOSS 7.1 server. This essentially listens on a folder and waits for new files and waits for new excel files at present and renames ...
0
votes
1answer
95 views
Calling a method in a separate thread causes NullPointerException
i have a method loadDatabase(). The method itself works perfect.
When i create a separate thread and call the method loadDatabase() i get the error shown below.
On the main thread it works fine.
Any ...
0
votes
1answer
111 views
Insert data using JPA with EJB
Suppose I want to do a single data operation on an existing JPA scheme, like for each Entity Class create n Entities Student. I've added the functionality to handle students, and I want to load them ...
1
vote
0answers
56 views
WEB9031 - cannot store entity with sequence generated id
I am using glassfish, postgres and openjpa.
I only have one bean and first want to create a new intance and store it in DB. I created a new User-Object, filled it (except the id) and got - trying to ...
0
votes
2answers
156 views
New to Java - What's JPA and DAO? [closed]
I'm new to Java and i'm trying to make a web project with servlets.
I'd like to query my database but I think I don't understand everything about JPA and DAO.
I've been taught to do things this way :
...







