Tagged Questions
0
votes
0answers
4 views
setFirstResult and setMaxResult doesn't work well with Order By
What could cause the CriteriaQuery orderBy method stop working?
Here are the implementations:
OpenJPAEntityManager kem = OpenJPAPersistence.cast(entityManager());
...
0
votes
1answer
22 views
JPA does not use sequence
I have created a sequence in the database (PostgreSQL) and I have the following annotations in the domain model. I am using JPA. However, when I invoke the web service (REST) without an id in the ...
1
vote
1answer
15 views
How to add more than one persistence-unit in persisence.xml?
Is this proper usage?
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="2.0">
<persistence-unit name="UserBean">
...
0
votes
1answer
14 views
Determining subtype of entity
Let's suppose I have this entity:
@Entity
@Table( name="products" )
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(
name="discriminator",
...
0
votes
2answers
51 views
Object not fetch well in java
I have a problem with fetching objects in Java. There is object A which is Entity bean class and it contains object B (other Entity bean class) as a field. Object A was created without B and later ...
0
votes
1answer
34 views
object references an unsaved transient instance error
Ok so i want to get mapped Groups and student in one table but i've got an error: "object references an unsaved transient instance". If i add cascade to all it will say that this objects arleady ...
0
votes
1answer
27 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 = ...
1
vote
0answers
25 views
How can I use SLF4J for my Java EE web application deployed on GlassFish 3 with Hibernate JPA?
Is it possible to use SLF4J in a specific GlassFish application and configure SLF4J solely for that application? We are currently struggling with the fact that GlassFish itself contains the SLF4J API ...
0
votes
0answers
10 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
1answer
35 views
Bean injection inside a JPA @Entity
Is it possible to inject beans to a JPA @Entity using Spring's dependency injection?
I attempted to @Autowire ServletContext but, while the server did start successfully, I received a ...
-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
43 views
primefaces ,eclipselink, data table after insert doesnt show the @joincolumn
Data table after i inserting and there is a blank field that doesnt show the entity
since i can't post image here is the url
after insert
after i reload / refresh the page the empty field is back to ...
0
votes
1answer
43 views
JPA - Only primary key is retrieved, other fields returned null
I am new to Java EE.
I am using Eclipse Juno + Eclipse Link + MySQL.
Currently I have a JPA project and a dynamic web project.
The JPA project is included in the web project's build path.
I created a ...
0
votes
2answers
50 views
Exception in selecting values from database
I have written a query to fetch values from database and is to be shown in datagrid in jsf page. But i am raised with exception in daoimpl layer. While converting stringbuffer to string and getting it ...
0
votes
1answer
46 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 ...
1
vote
1answer
106 views
JPA OneToMany eager fetch does not work
I have a weird problem with two entities with one-to-many relation in JPA. I am using Glassfish 3.1.2.2 with EclipseLink 2.3.2. This is the first entity:
@NamedQueries({
...
1
vote
1answer
35 views
Is concurrent synchronization on JPA entity's transient fields necessary?
We know that two threads manipulating the same entity at the same time, will throw an OptimisticLockException if all defaults apply. What happens if the field(s) that the threads manipulated, was ...
0
votes
1answer
102 views
Java 8 closures/lambda + Java EE 7 = LINQ or Grails-like magic in JPA?
One of the coolest things about Grails is that you can do something like
MyDomainObject.findAll { foo == x && (bar == null || bar == y) }
and the closure gets translated to a SQL WHERE ...
0
votes
2answers
31 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
1answer
55 views
About use hibernate one to many-is it a good choice? [closed]
When i tried to use hibernate "one to many" function to help me manager entity's relationship in DB,i met a lot of problems. some of them are odd,so after two weeks' struggle with hibernate one to ...
0
votes
2answers
69 views
Hibernate one to many:“many” side record's foreign key is updated to null automatically
I defined two entity as following
1.Booking
@Entity
@Table(name="booking")
public class Booking extends BaseModel{
..
@OneToMany(cascade=CascadeType.ALL,fetch=FetchType.LAZY)
...
0
votes
0answers
77 views
Hibernate exception “Batch update returned unexpected row count from update” when do saving
I know there are many same questions in stackflow,while it can't adjust my case,i really doubt my issue is caused by hibernate inheritance mapping,anyway,please see detail stuff:
1.Booking Entity
...
1
vote
1answer
33 views
How to find a ininite loop in glassfishv3
I have s.t. like a infinite loop some where in the code. That place is somehow not called often. So after a couple of hours one of the cpu's on the linux machine start's running at 100% then after a ...
2
votes
1answer
71 views
Mapping extra parameters with JAX-RS and Jackson
I'm working on a project that uses JAX-RS, Jackson, and JPA. The JAX-RS resources map incoming JSON directly to the POJO (JPA) that is to ultimately be persisted.
@POST
...
1
vote
2answers
54 views
JPA - PersistenceUtil.isLoaded - its loaded in which EntityManager?
Question:
PersistenceUtil.isLoaded is evaluated by looking at which EntityManager or is it L2 Cache? After all Entities are loaded by only one of these.
PersistenceUtil.isLoaded method definition ...
-3
votes
0answers
35 views
JPA with presistence.xml [closed]
I created a JPA project and the presistence.xml does not has any connection information. Why is this?
The .xml contents:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" ...
0
votes
0answers
13 views
How to request an embedded class?
I'm using a class entity with an embdeded id:
@IdClass(value = Id.class)
@Entity
Entity {
@Id
long aid;
@Id
long bid;
long param;
}
@Embdedable
Id {
long aid;
long bid;
}
I would ...
1
vote
2answers
72 views
JPA Entity - Specify Persistence Unit?
I have a JavaEE project that makes use of multiple persistence units. Is there any way to specify which persistence unit a particular JPA Entity belongs to? Some entities are in one data source, ...
0
votes
3answers
344 views
javax.persistence.TransactionRequiredException: Executing an update/delete query
I am using JPA2.0+hibernate3.2+Spring3.0.5+MySql5.5 to implement DAO function,but it doesn't work and just throw javax.persistence.TransactionRequiredException when i tried to persist entity to DB. ...
1
vote
1answer
37 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 ...
1
vote
1answer
60 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 ...
1
vote
2answers
47 views
Implement a generic search on persisted JPA entities
Say we have an entity Foo that contains various data fields, one being a List<Bar>. In turn, a Bar has various data fields, one being a List<Snafu>. We want to give the user an input ...
1
vote
1answer
44 views
handling JPA transactions exceptions
I have 3 EJBs:
the first one is for persistence:
@Stateless
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class PersistenceService
{
@PersistenceContext(unitName="pc")
...
1
vote
1answer
34 views
Child objects are not deleted even though I have cascading on
Why are not feedback deleted when I delete food? I have the following mapping on the set of feedback. Issuing a named query like this delete from Food where id = :id . (Yes, I set the id on removal).
...
0
votes
0answers
39 views
com.mysql.jdbc.jdbc2.optional.MysqlXAException: XAER_INVAL: Invalid arguments
I am using JPA+Hibernate+Spring+Atomikos and got an odd error,i think the coding is not difficult to understand,so just paste it here and don't do too much explanation,
1.Entity
@Entity
...
0
votes
1answer
59 views
Bidirectional Association In JPA Repository Not Working
Here are my tables:
ORDER
CREATE TABLE ORDER_DETAILS (
ID INT NOT NULL AUTO_INCREMENT
, ORDER_ID VARCHAR(60) NOT NULL
, ADDRESS_ID INT
-- , DRIVER_ID INT
, BARCODE_ID ...
0
votes
1answer
25 views
New Project in JBoss-AS environment - which one?
I got a book about JPA and I want to follow some of the contained tutorials. I want to use JSF, JPA and some EJBs. I got some difficulties, which application server and project type to choose? ...
0
votes
4answers
130 views
What cause org.hibernate.PropertyAccessException: Exception occurred inside setter
What cause this exception, I can't manage to find out.
Request processing failed; nested exception is javax.persistence.PersistenceException: org.hibernate.PropertyAccessException: Exception occurred ...
0
votes
2answers
55 views
Hibernate “mappedBy” use
I have read several examples about creating associations between tables with Hibernate and I have got a little bit confused. I want initilaly to know how many tables will be created in the database ...
0
votes
1answer
55 views
Hibernate/JPA ManyToOne vs OneToMany
I am reading currently the documentation of Hibernate regarding the entity associations and I come accross a little difficulty to figure out some things. It has to do in essence with the differnce ...
1
vote
1answer
60 views
EclipseLink: Value of Column is null while Deleting in ManyToMany-Relationship
I have a problem with one of my entities.
There are 3 Tables (UserAccount, UserRole, Role) for Glassfish Access Management and two Entities UserAccount and Role mapped by "ManyToMany" to each other.
...
1
vote
1answer
43 views
Search JPA entities that contain Lists using fields in those Lists
Let's say we have an entity named Foo. This Foo entity contains a List of Bar entities. A Bar entity has a name.
We persist a number of Foo records.
Now, I present the user with a JSP page to ...
0
votes
0answers
17 views
ANT task for JPA model
Integrated eclipse with JPA (using eclipse link) and the model was generated using JPA Tools-->Generate Entities from DB. Is it possible to do the same using a ANT Task
0
votes
2answers
52 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
2answers
51 views
Persisting entities to both database and search engine
I am creating an application where I use JPA and ElasticSearch. I have a question on how to structure and hook them together. I have an entity named Newspaper.
I want to persist it in the database ...
3
votes
3answers
84 views
How to auto detect entities in JPA 2.0
I am pretty sure that I used some sort of auto detection of beans annotated with @Entity in JPA 2.0 in the past but I am not able to find out how. How do you do that instead of listing each bean in a ...
2
votes
0answers
91 views
JPA Join using arbitrary field (not primary key)
I've got two entities that I want to join together using a field they have in common, called shared_id. The field is not the primary key of either entity. The shared_id is unique - each Hipster will ...
1
vote
1answer
41 views
Specifying Constraints on a field representing a Date in an entity JPA
I have to set a constraint over the fields "heureFin" & "heureDebut" of my entity Intervention, I wonder how to precise this constraint : heureFin>heureDebut ??
here is my entity :
public class ...
0
votes
2answers
81 views
How to best share entity classes/DAOs across multiple PUs?
Let's take a basic example, say we have an entity class
@Entity
public class User {
}
and a DAO for dealing with the data:
public interface UserDao {
@Transactional
public void ...
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 ...

