Tagged Questions
0
votes
2answers
52 views
Java-EE-6: How to store a boolean in a @ManyToMany and @ManyToOne relationships?
I am working on a data model that basically consists of users and documents. Now everytime a new document is added, there should be a flag that identifies a document as "unseen" as long as the ...
3
votes
3answers
132 views
Bidirectional OneToOne relationship not symmetric for save?
Is there any difference between saving an entity on the owner side or on the other side if PERSIST cascade type is used on the relation?
@Entity
public class Slot {
@OneToOne(mappedBy = "slot", ...
0
votes
1answer
57 views
select jpa relation to use
I have one-to-many bi-directional relationship between SiteMember class and Post class:
SiteMember class
@OneToMany(mappedBy = "siteMember",cascade=CascadeType.ALL)
private List<Post> ...
0
votes
2answers
90 views
Persistency unit fails to make the relation many to many
Ok this is a weird problem because I had it working before.
So I have 2 classes: game and developer. They have a many to many relationship.
The persistency unit makes automatically the table ...
2
votes
1answer
199 views
JPA - unique bi-directional entity relationship
I want to make relations between my "Tag" entity. The relationships are bi-directional and are stored in my entity "TagRelation":
Each tag relation should only have 1 entry in the tag_relations ...
1
vote
1answer
1k views
JPA OneToMany relation not automatically populated?
I have a simple OneToMany relation between Task and TaskError.
Task maps the TaskErrors:
@OneToMany(cascade = CascadeType.ALL, mappedBy = "task", orphanRemoval = true)
private List<TaskError> ...
1
vote
2answers
232 views
setting the correct jpa mapping for shopping cart items and product
I am learning jpa through some examples ,involving a shopping cart and cart items.I defined them as below..but am not very sure about which mapping to use
@Entity
class Product{
private Long id;
...
0
votes
1answer
1k views
JPA Relation or Secondary Table
Hi I am reengineering one of my project with JPA which was initially on iBatis.
public class Entity{
//ids and other stuff
String locale;
String text;
}
I was storing locale and text ...
0
votes
1answer
784 views
JPA map relation entity parentID
could someone help me to understand how can I define an entity with JPA mapping that has a relation with it self?
For example, my entity is CompanyDivision, divisionA contains divisionB, divisionC
...