Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
820 views

JPA 2.0 Hibernate @OneToMany + @MapKeyJoinColumn

OneToMany + MapKeyJoinColumn doesn't work for me, please suggest what I'm doing wrong. I'm using JPA 2.0 + Hibernate 3.6.1 And want to map following tables: To Classes: @Entity public ...
5
votes
4answers
2k views

Constraint violation in Hibernate unidirectional OneToMany mapping with JoinTable and OrderColumn when removing elements

I have a problem when removing elements from a list mapped as described above. Here is the mapping: @Entity @Table( name = "foo") class Foo { private List bars; @OneToMany ...
4
votes
4answers
216 views

PHP Sending mass mails: One for each or one for all?

When sending mass mails with PHP, is it better to send each subscriber an e-mail (running a for loop through all the e-mail addresses) or is it better to just add all in BCC in a comma separated list ...
3
votes
1answer
2k views

Symfony 2 Embedded forms using one to many db relationship

I'm have a problem embedding forms from different entities in one form, my form is being displayed with firstname [input] lastname [input] address - but the address has no input next to it. Basically ...
3
votes
1answer
227 views

JPA OneToMany, always empty

i have a bidirectional, one to many, and many to one relationship. say, a Company has many Persons, and a Persons has one company, so, in company, @OneToMany(mappedBy = "company", fetch = ...
3
votes
1answer
333 views

one to many mapping to a property of superclass

I have a superclass "Questions" and its subclass "MultipleChoiceQuestions" superclass ha a field "activity" I want to create a Set and use OneToMany annotation using "mappedBy = "activity" eg..... ...
3
votes
1answer
350 views

How to apply a default-restriction on Entity-Bean @OneToMany Relationships

Dear all, I have to e ntity model like Customer and Order. Each customer could have thousand orders, well, I make OneToMany and ManyToOne relationship between these to entities. But the thing I want ...
3
votes
2answers
170 views

What is the best optimized way to select many entities with subentities in JPA?

Let's say we have: @Entity public class Order { @Id private int id; @OneToMany(mappedBy="order") private List<Item> items; ... } and @Entity public class Item { @Id private int id; ...
3
votes
1answer
3k views

Hibernate, Persistence and @OneToMany and @ManyToOne annotations problems

I have some problem with @OneToMany and @ManyToOne annotations. I have two class Suite and SuiteVersion. A SuiteVersion is dependent of a suite. So i have implemented this in my code: Class Suite : ...
2
votes
2answers
133 views

Hibernate OneToMany using annotations with legacy database

I'm working with a legacy database that isn't normalized at all. They've been coding relationships directly in the program (written in Uniface). Now, they are migrating to Java. Sadly, I can't change ...
2
votes
2answers
141 views

@OneToMany mapping list size limit

Is there any way to limit the list's size of the @OneToMany relationship in JPA? Here's my code sample: @OneToMany(mappedBy = "publication", cascade=CascadeType.PERSIST) private List<Comment> ...
2
votes
1answer
702 views

jpa removing child from collection

I'm using JPA over Hibernate in my web-app. Here are two entities (only getters are shown): class Child { private Parent parent; @ManyToOne(optional=false) @JoinColumn(name="parent_id", ...
2
votes
2answers
268 views

Persisting OneToMany relationship only persists first object in set?

Been messing around with Hibernate and PostgreSQL trying to get it to work as expected. But for some reason when I try to persist an object with a @OneToMany relationship with more than one item in ...
1
vote
2answers
80 views

JPA use fetch join or EAGER

I have a Class A which has one-to-many relationship with class B & C. I had set the fetchType to EAGER which causes the multiple bag fetch problem in JPA. Now there are two ways to solve the ...
1
vote
1answer
237 views

group chat room using XMPP in xcode iphone to support multiuser chat

I have implemented the one to one chat using xmpp.But for one to multiple users i tried to pass an array of recipients in "to" parameter,it sends my message to all of them but cant receive their ...
1
vote
0answers
244 views

JPA: @SqlResultSetMapping OneToMany problem

I am trying to do some NatveQueries, but I am stuck with @SqlResultSetMapping configuration. I have those classes: @Entity public class LocalUser implements Serializable { private static final ...
1
vote
1answer
67 views

Diango OneToMany form on related model

I've created a onetomany relationship between two models. The model that has the foreignkey I can use their formset without problems, but now I want to fill this relation through the form of the model ...
1
vote
1answer
169 views

Eclipselink, possible to do @OneToMany relationship to class on an @EmbeddedId property as foreing key?

I want to do a Jaas login module using JPA to store my AuthUser and AuthUserRole. I'll focus on the JPA side on this question. Here is what I would do in the Database (not at all legitimate SQL code ...
1
vote
0answers
98 views

JPA: Table Relationship Issue

I've two tables: reservation and machine. So, I have two classes: Reservation @javax.persistence.Entity @Table(name = "reservation") @NamedQueries({ @NamedQuery( name = ...
1
vote
2answers
563 views

Unable to persist new object graph using JPA (hibernate) with simple oneToMany - ManyToOne relationship

I am attempting to persist/merge a brand new object graph through jpa but it seems like the order of persistance is incorrect as it tries to save sub objects who have a constraint on their parent ...
1
vote
1answer
640 views

@MappedSuperclass and @OneToMany

UML Diagram I need association OneToMany from Country to superclass Place (@MappedSuperclass). It could be bidirectional. I wolud need something like @OneToAny... @MappedSuperclass public class ...
1
vote
1answer
132 views

How to maintain a Map<EntityA, EntityB> in JPA2?

I have three entity classes (A, B, C). A should contain a map which maps instances of B to instances of C. All instances of C are owned by a map of some A. I've tried this (getters and setters ...
1
vote
1answer
281 views

Hibernate mapping association OneToMany with constraint restriction

I have the following code: @Entity class A{ @Id private Long id; @OneToMany(fetch = FetchType.LAZY, mappedBy = "a", cascade = CascadeType.ALL) private List<B> bs =new ...
1
vote
1answer
429 views

JPA: Entity X has a OneToMany relationship to itself. How?

I have one Entity call Comment Comment + id (PK) + fromUserId + targetId + replyId : This is the foreign key to id The idea is a comment can have many replies, but a reply is also a comment. To ...
1
vote
1answer
542 views

JPQL to query entity connected to another by @OneToMany

Has: class Container { @Id @Column(name="id") protected long id; @OneToMany @JoinColumn(name="container_id", nullable=false) protected Collection<Content> contents = ...
1
vote
0answers
158 views

Duplicate entry using unidirectional mapping using JoinTable

I created a JPA unidirectional join table following the JPA documentation very closely (http://www.jpox.org/docs/1_2/jpa_orm/one_to_many_list.html). I could insert an applicant, A, with joblist ...
0
votes
2answers
81 views

Error Printing Foreign Key ID. Symfony2 Doctrine

I have an Entity called Keyword, and it has two rows: id comment_id foo_id text 2 1 1 Jajajaja :) Hola. 3 2 1 Chao foo_id and comment_id are foreign keys and ...
0
votes
1answer
31 views

Entity framework Association in conceptual model for one to many relationship

I have two entity CUSTOMER and ORDER..there is one to many relation from CUSTOMER to ORDER where CustomerID is primary key for customer and foreign key in ORDER..now I want to add customer name ...
0
votes
0answers
28 views

'Deep' fetching of an entity from a GAE DB using JPA

Here's what I try to do: Class 'Book' holds a List of Class 'Chapter' Create a Book with a couple of Chapters Save the Book to the DB using JPA Fetch the Book from the DB, including its Chapters ...
0
votes
0answers
34 views

Advanced JPA Mapping with Compound keys - OneToMany relationship

I am using JPA 1.0 and have following tables, namely, Type, Guide and Address (names simplified for clarity and highlighted in bold) It is a scenario, where in relationships between 3 tables is built ...
0
votes
0answers
45 views

Doctrine 2 OneToMany Cascade SET NULL

THE ERROR: Cannot delete or update a parent row: a foreign key constraint fails The classes CLASS TEACHER class Teacher{ /** *@ORM\OneToMany(targetEntity="publication", mappedBy="teacher") */ ...
0
votes
1answer
26 views

merging entity with onetomany mapping and @version field causes delete of the previous mapping

Hi! All, I have a mapping issue with two entities. mapped through a @OneToMany unidirectional relation. I have an entity Artifact which can have multiple Revision. Here's how I have mapped them ...
0
votes
0answers
28 views

Propel - How can I get an array of all referenced objects

$bookArray = $book->toArray($keyType = BasePeer::TYPE_COLNAME, $includeLazyLoadColumns = true, $includeForeignObjects = true); print_r($bookArray); => array( 'Id' => 123, ...
0
votes
2answers
114 views

Grails one to many relationship view

I have two grails domain classes Class MultipleChoiceQuestion { String question static constraints = { ... } static hasMany = [options:MultipleChoiceOption] } and ...
0
votes
1answer
70 views

Updating a @OneToMay Collection

I'm trying to do somethng like Facebook's wall but I've got a problem. My DB is made by just two tables, one for the users and one for the posts. Each post has a reference to the user (a foreign key ...
0
votes
1answer
43 views

Hibernate JPA Annotation for specific column mapping

Refer to the URL http://docs.jboss.org/hibernate/core/3.5/reference/en/html_single/, section 1.2.4 It defines a set in the hibernate configuration. <set name="emailAddresses" ...
0
votes
1answer
53 views

JPA @OneToMany fetching empty

Tables APP_USER ROLE_GROUP_ID APP_USER_ID (PK) USERNAME ROLE_GROUP_ID ROLE_GROUP ROLE_GROUP_ID ROLE_ID .... ROLE_STATE (this table has composite PK) ROLE_ID (PK) ...
0
votes
0answers
39 views

Order a Hibernate Criteria result by an Agreggation of a Property of OneToMany relationship

I have the following classes mapped: class Student { ... @OneToMany(mappedBy = "student") private List<Grades> grades; } class Grade { ... @ManyToOne Student student; ...
0
votes
0answers
84 views

Doctrine2 cannot make '2' one-to-many relations

I'm trying to make 3 entities (Item, Agree, Disagree) with following relations. Item one-to-many Agree Item one-to-many Disagree But only one relation (declared later) out of two has made. ...
0
votes
2answers
123 views

JPA: @JoinTable - Both columns are Primary Keys.. How do I stop that?

This is my annotation I use to generate my Join Table. @OneToMany(cascade = CascadeType.ALL) @JoinTable(name = "service_operations", joinColumns = { @JoinColumn(name = "serviceId") }, ...
0
votes
1answer
75 views

JPA OneToMany Cacade.ALL creating two entries for the parent

We are using JPA-Hibernate in our project We have a entity, say a A which has a list of entity Bs. Within A, there is a OneToMany on list of Bs Within B, there is a ManyToOne on A In A, for the ...
0
votes
0answers
198 views

JPA OneToMany multiple column join enum

I am using JPA for my project. I am stuck with getting to retrieve entities in a OneToMany relation. Here is the scenario. My Entities are EntityX -Id -name -etc EntityY -Id -name -etc EntityZ ...
0
votes
0answers
201 views

OneToMany HIbernate Projections problem

I'm trying to create a Hibernate projection for database stored File and its versions like this: DetachedCriteria criteria = DetachedCriteria.forClass(File.class, "file"); ...
0
votes
3answers
105 views

Update an entity (OneToMany relationship)

i got 2 entities, Student and Phone, and a relationship one-to-many between them. @Entity @Table(name = "STUDENT") public class Student { private long studentId; private String ...
0
votes
0answers
159 views

One to Many Entity Relationship in SQL Server 2005

Can you please let me know if the database design below is correct or need to be modified. please ignore the sql syntax I have used One to Many relationships between entities as you can see the ...
0
votes
0answers
23 views

Hibernate Mapping Conflicts

I am having a parent table and child table in Oracle Schema. Also created a Hibernate Classes for this tables. for e.g. parent table Called A which has primary key p_key and Child table has Column ...
0
votes
1answer
213 views

Save a model with a relation OneToMany

Hi I have models like this : public class Person extends Model { ... @OneToMany(orphanRemoval = true, mappedBy = "person") @Cascade({ CascadeType.ALL }) public List<Contact> infos = ...
0
votes
1answer
331 views

JPA (hibernate) OneToMany relationship and null

I have a relation OneToMany between a class Resident and ResidentInfo ResidentInfo is not supposed to exists without Resident, but ResidentInfo is not required Here are my classes: public class ...
0
votes
1answer
87 views

Predicate for child objects iphone

I see this in the predicate programming guide: If you use a to-many relationship, the construction of a predicate is slightly different. If you want to fetch Departments in which at least one of the ...
0
votes
2answers
133 views

Redirect with an HTTP Post instead of a simple link, using PHP

I have one website, of a magazine publisher, and this site has a standard hyperlink to another site that hosts the electronic version of the magazine. The emagazine hosting site has it's owm, per ...

1 2