0
votes
0answers
11 views

Implementing 'Filtering' feature on multiple fields of data coming via 4 tables using JPA criteria queries. What could be the best approach?

I am using JPA for my project to query database and all entities are mapped according to DB design via annotations. DB is postgreSQL. First let me explain the table structure in brief: Table_A Aid ...
0
votes
1answer
15 views

@UniqueConstraint does not affect DELETE statement on @CollectionTable Hibernate

We have an Entity with embedded collection. 1) Initial configuration @Entity @Table public class A implements Serializable { @ElementCollection @CollectionTable(name = "A_B", joinColumns = ...
0
votes
0answers
30 views

jpa part of composite primary key also part of composite foreign key

I'm having problems mapping thwo relations between three of my JPA entities. First of all, I show you the database tables involved: Ciclista idciclista (PK) (rest of fields...) Prueba ...
0
votes
0answers
27 views

Hibernate override joined inheritance type

i have a simple object model which i want to mix inheritance strategies (single table and joined) abstract class A class B extends A class C extends A I want two tables A and B (C entity will be on ...
0
votes
0answers
20 views

advantage of select-before-update in hibernate

To avoid UPDATE statement while reattaching an object is through setting the select-before-update= “true”. If this is set, hibernates tries to determine whether UPDATE needed, by executing the SELECT ...
0
votes
1answer
25 views

Ebean ManyToOne Mapping CRUD

I have two Entities Transaction and Category with ManyToOne mapping. So many transaction can fall into have category. @Entity class Transaction extends Model{ @Id public Long id; ...
0
votes
0answers
17 views

SQL-Like Set Operations On Sets Of Arbitrary Classes (Including Joining to JPA @Entity's)

I'm importing 3 CSV spreadsheets for use in a java app. Each row is marshaled into a class that has a property for each field + some behavior. I want to be able to easily do SQL-like set operations ...
0
votes
1answer
35 views

Openjpa mappedsuperclass in a separate jar

We are trying to build some services with entities that have common fields between them. To handle this the approach we have taken is to define a base class with all the common fields and extend all ...
0
votes
1answer
62 views

Java many-to-many object does not persist in join table

The 'Batch' object persist's perfectly in the database if I don't include the many-to-many property 'Test'. I have already tried out many different things from similar questions but can't find an ...
0
votes
1answer
65 views

ManyToMany Relation with Play Framework 1.2.5 JPA

I have 2 Models Article.java and Tags.java. An Article can have many Tags, and a Tags can be belonged to many Article. I am really in trouble to make this relation using JPA and Play Framework 1.2.5. ...
0
votes
1answer
33 views

@OneToMany relationship using a single @JoinColumn?

I have the following tables (most essential columns shown only, A & B are not the real names btw): table A { ... } table B { ... } table METADATA { KEY VALUE REF_A REF_B } ...
0
votes
1answer
84 views

Persisting Entities Mapped to MySQL View in JPA/Hibernate

I have a entity Customer, which is mapped to a view which is defined as a series of joins between Customer, Account, and Person in my database. I am using JSF 2.0 with JPA set up with Hibernate. The ...
0
votes
0answers
16 views

Address classes and hibernate mappings

In my case address - is a complicated component that consists of Country, State, Town and Street entities. Each of them depends on another (one-to-many relationship between parent and its child). ...
1
vote
1answer
39 views

JPA EclipseLink Weaver generates call to porperty getter inside its setter -> NullPointerException

I have an @Embeddable class that uses property access to wrap another object that's not directly mappable by JPA via field access. It looks like this: @Embeddable @Access(AccessType.PROPERTY) public ...
1
vote
1answer
66 views

How to mapping the relations between classes (@ManyToMany) for a table

How to mapping the relations between three class @ManyToMany unidirectional for a unique table ? The relations is like that: Project have many Task Many Task have many specifcs Activitys (to ...
0
votes
0answers
34 views

Use a combined PK in other entity

Hi I have a ManyToMany relationship between two entities, and I have to use this new combined PK in another entity, how can implement it in ebean or JPA ?
0
votes
1answer
259 views

Subsitute for Month,year,date functions in jpa

I want to execute this query in JPA.But i am getting error while executing this query.How to use Month(),Year() in JPA We can use these in native SQL Query.But how to use it? Please help me.Thanks in ...
0
votes
1answer
50 views

Mapping @OnetoOne on composite key column

Firstly i have two Entities Folder and FolderObjectID with their corresponding tables. On Folder Table i have composite key FolderID and ParentFolderID Table Folder +----------------+ | Folder ...
0
votes
1answer
33 views

Mapping a polymorphic list with JPA?

Suppose I have: //inheritance annotations public abstract class Animal { private int noOfLegs; //... } //inheritance annotations public class Cat extends Animal { //cat stuff } ...
0
votes
1answer
42 views

ORM Mapping inheritance with two strategies at once in JPA?

Now, as far as I know, there are two most used inheritance mapping strategies in JPA: Single table - where all the classes (both subclasses and superclasses) are mapped in a single table that has as ...
2
votes
3answers
174 views

can we use jpa without hibernate

I am new to jpa. as per my understanding , jpa is specification and hibernate implements jpa and provide add on features along with jpa methods. But i was going through jpa tutorials , where using ...
0
votes
2answers
51 views

Why does this one-to-many mapping fails when using mappedBy?

@Entity public class Person implements Serializable{ @Id @GeneratedValue private int id; private String name; @OneToMany(cascade = CascadeType.ALL, mappedBy = "person") ...
2
votes
4answers
353 views

Hibernate not updating child object while updating parent object

I have two tables parent and child has @oneTomany relationship between them. following is my table structure. Table Structure CREATE TABLE `parent` ( `id_parent` int(11) NOT NULL AUTO_INCREMENT, ...
2
votes
1answer
120 views

jpa non managed entities

Let's say I have to fire a query like this: Select primarykey, columnname, old_value, new_value from first_audit_log; Select primarykey, columnname, old_value, new_value from second_audit_log; ...
0
votes
1answer
50 views

Column annotation with special characters

I'm going to read a MS-ACCESS 97 Database thru a JPA compatible ORM. The point is the column name in the database has special characters: @Column(name="FechPró") Date nextDate; And at execution I ...
0
votes
0answers
69 views

JPA updateEntity err

when i try to run my jpa code using orm file it gives me err shown in the image 140 wdp INFO [main] openjpa.Runtime - Starting OpenJPA 1.2.1-SNAPSHOT 419 wdp INFO [main] openjpa.jdbc.JDBC - ...
0
votes
1answer
44 views

How to specify Hibernate mappings from code without JPA

I'm using Hibernate native SQL queries that map the results to a POJO. However, I need a mapping XML file that binds column names to property names. Is it possible to specify the mapping directly from ...
0
votes
1answer
38 views

Rationale behind ORM inheritance (JPA)

I have come across ORM inheritance in JPA and always wondered about the design principle behind that. I find it dirty that the framework enables an inheritance relationship between two classes that ...
1
vote
0answers
129 views

How to retrieve persisted POJOs with Cassandra and Hector Object Mapper

I'm trying to play a little bit with the Hector Object Mapper to map pojos to/from Cassandra. Since I'm a newbie in JPA standard, I'm simply trying to persist some basic beans to Cassandra and then ...
13
votes
2answers
260 views

Hibernate faster EntityManagerFactory creation

In my desktop application new databases get opened quite often. I use Hibernate/JPA as an ORM. The problem is, creating the EntityManagerFactory is quite slow, taking about 5-6 Seconds on a fast ...
0
votes
2answers
156 views

Difference between Hibernate and Hibernate JPA

I found a lot of similar questions Difference between Hibernate library and Hibernate JPA library What's the difference between JPA and Hibernate? similarity and difference between jpa and ...
0
votes
1answer
86 views

Entity with Inner class for building the entity

I am trying out one-to-one mapping in JPA, here i have taken relationship between Student and Contact, each student has an contact. i have create Student entity as follows, @Entity ...
0
votes
1answer
46 views

Jpql query across tables

Let'say i have the following tables: Table A: id b-id Table B: id property Can I filter elements of table A like the following in JPQL language? SELECT a FROM A a JOIN a.b-id targetId WHERE ...
0
votes
2answers
255 views

JPA circular reference. “object references an unsaved transient instance”

I'm using JPA / Hibernate. Let's say I have folders and files. Every folder can contain more folders and files. Every file knows what its root folder is (not the parent). @Entity public class ...
0
votes
0answers
183 views

Hibernate Entity class all fields are not being called causes java.sql.SQLException: Invalid column name

I am using Hibernate 4.0 I have a Oracle function as follows CREATE OR REPLACE FUNCTION my_function ( param_type VARCHAR2, param VARCHAR2 ) RETURN sys_refcursor AS ...
3
votes
1answer
227 views

JPA many to many merge on the owner triggers delete on join table

I have many to many relation between Customer and BusinessUnit: public class Customer extends AbstractEntity { @JoinTable(name = "CUS_BUS_UNITS", joinColumns = { ...
3
votes
2answers
135 views

Primitive type in JPA mapping. What if the database colum may be NULL?

Given this class mapped with JPA (using JPA 1.0 and Hibernate): @Entity public class Foo { private int bar; /* ... */ } What happens if I try to load a record which has the BAR column ...
2
votes
2answers
173 views

Mapping multiple HashMaps with same Entity keys in JPA

I have the following business model: Meal - contains name and price Menu - contains name and a set of Meals with their amounts and alternate prices (usually lower than default prices). In the past ...
2
votes
1answer
416 views

JPA table with 2 primary key fields

I have a table which contains only 2 fields. The table has a composite PK formed by these two fields. When using Netbeans for creating entity beans from database, the entity bean is not created ...
0
votes
1answer
86 views

JPA 2: How many methods are allowed in one entity with @Prepersist annotation?

in jpa 2 , home many methods are declare with annotations like @prepersist and in which order these methods are execute . Some time we also create different class for listener and apply this class on ...
2
votes
1answer
191 views

Can't get work EclipseLink DynamicEntity with Oracle sequence

I'm trying to persist Dynamic Entity with EclipseLink 2.3. If I'm not configuring sequence and just assign a value to field it works. Also not setting a value works, sequence is working with trigger ...
0
votes
0answers
70 views

JPA session, is it rudiment comparing to Session Less' architecture

If follow the idea of Session Less' architecture, does it mean that JPA session is rudiment in JPA/Hibernate? Usually, in web-development, we use very short-lived session /unit of work, just to ...
0
votes
0answers
57 views

Is there any Doctrine Behaviors implementations in Java ORMs?

As you may know PHP Doctrine ORM originally was created as a "copy" of Hibernate ORM. But, in fact, Doctrine offers some extra tools, called behaviors. As a PHP-newcomer in the world of Java i`m ...
0
votes
0answers
108 views

Criteria API query or namedQuery for three joined tables

How can I create Criteria API (or namedQuery) for three joined tables. I actually have SQL query: SELECT DISTINCT og.* FROM cp_offer_group AS og, cp_offer AS o, cp_client_subscription AS ...
1
vote
1answer
115 views

[ERROR] ORA-00918: column ambiguously defined

There are two entities: @Entity @Inheritance(strategy = InheritanceType.JOINED) public class Person implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private ...
0
votes
0answers
143 views

OpenJPA MappingTool MetaDataException

I am trying to go through the process of forward mapping using OpenJPA. I want to use the MappingTool for this purpose but I keep on getting an MetaDataException. I provide the persistence.xml as well ...
0
votes
0answers
24 views

Apache OpenJPA forward mapping

I cannot seem to get forward mapping to work and would like some assistance. I have an orm.xml file that contains persistence metadata and a persistence.xml file, I was under the impression that using ...
0
votes
1answer
45 views

How map superclass in JDO with similar behaviour to @MappedSuperclass in JPA

I need entities with identical set of base attributes but with different identity type and lifecycle. Actualy I'm trying to implement bussiness audit with distinct entity. Embedded object is not ...
0
votes
0answers
55 views

OpenJPA MappingTool ClassNotFoundException

I'm having trouble with the MappingTool, it keeps on throwing java.lang.ClassNotFoundException when I run it on a Java source file. It feels like it's a classpath issue but I am not certain. Please ...
3
votes
1answer
123 views

How to make OneToOne relationship using join on secondary key?

I have two classes: @Entity @Table(name = "clients") public class Client extends Model { @Id public int id; public String name; @OneToOne public Contact contact; } @Entity ...

1 2 3 4 5 16