Tagged Questions

108
votes
4answers
65k views

JPA EntityManager: Why use persist() over merge()?

EntityManager.merge() can insert new objects and update existing ones. Why would one want to use persist() (which can only create new objects)?
3
votes
5answers
99 views

Why nothing happens when I persist?

I hope I does not ask a question you already answered, but I am not able to understand my problem... I explain : I work with Spring and Hibernate, I have a Manager interface, and a Manager that ...
3
votes
2answers
450 views

Complex JPA persist order issue

I'm working on a project with some unusual entity relations which i'm having problems persisting with JPA. There are two relevant objects; User and let's call the other X. User has a one-to-many AND ...
2
votes
2answers
165 views

JPA merge vs. persist

So far, my preference has been to always use EntityManager's merge() take care of both insert and update. But I have also noticed that merge performs an additional select queries before update/insert ...
2
votes
2answers
520 views

Spring transactional context doesn't persist data

I know that my problem is a common problem, but I've checked a lot of questions here, checked Spring documentation and I really don't know what I am doing wrong. My problem: I've got a Spring WebFlow ...
2
votes
1answer
194 views

Hibernate - Setting a cascade persist just for one session

I have this relation in Hibernate: n 1 A -------> B The cascade types in the @OneToMany from A to B is not CascadeType.PERSIST, and cannot be made so. The @ManyToOne from B to A ...
1
vote
1answer
30 views

Spring + JPA + Hibernate: No inserts at startup

I'm executing a method at startup time with @PostConstruct annotation. This method has to check a value stored in a table in DB. If it doesn't exist, then it has to insert it. The checking of the ...
1
vote
1answer
390 views

Google App Engine JPA persist() method is not populating my object's Id

I'm trying to persist a new Java object which has an auto-generated Id but it is not being populated upon calling EntityManager's persist() method. I have in my Object class.. ... @Id ...
1
vote
2answers
207 views

Getting the ID of the persisted child object in a one-to-many relationship

I have two entity classes A and B which looks as follows. public class A{ @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @OneToMany(mappedBy = "a", fetch = ...
1
vote
3answers
389 views

How can I remove an item from a Hashmap in Hibernate?

I try to delete an item from a hash map with hibernate. Here is my config on the collection: @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @OneToMany(mappedBy = "game", cascade = ...
1
vote
1answer
626 views

JPA - saving changes without persist() invoked

we are using Toplink implementation of JPA + Spring + EJB. In one of our EJBs we have something like this: public void updateUser(long userId, String newName){ User u = em.get(User.class, ...
0
votes
1answer
27 views

Persisting entities with references to other entity classes in JPA

I am working with JSF 2.1, Netbeans 7.0.1, Glassfish 3.1.1, JPA + EJB. For instance, I have an entity class called User and it has reference (many-to-one relationship) with entity class UserType. ...
0
votes
1answer
44 views

How to set modifiedDate on an Entity when a dependent property changes

Assume the JPA-Entity Foo. By adding annotations, i can handle updating the createdDate and modifiedDate properties. After changing name and persisting Foo, createdDate is updated correctly. But this ...
0
votes
1answer
266 views

Storing a jpa entity where only the timestamp changes results in updates rather than inserts (desired)

I have a JPA entity that stores a fk id, a boolean and a timestamp: @Entity public class ChannelInUse implements Serializable { @Id @GeneratedValue private Long id; @ManyToOne ...
0
votes
1answer
83 views

How to persist in order

I have two entities: EXAM and EXAM_NORMAL. EXAM @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; private String name; private String codeName; ...