0
votes
0answers
39 views

Oracle ORDImage and EclipseLink || Hibernate

I'm trying to create ORM with EclipseLink in my Java EE + OracleDB application. The problem is that I don't know how to map ORDImage type from database. I tried to use @Struct but without a success. ...
3
votes
1answer
84 views

Spring JPA: Query builder versus Criteria Builder , which one to use?

I am going to start new project that would play with very large database, thus would be having lots of database operation. I have decided to use Spring JPA as my ORM. Now Spring JPA provides various ...
3
votes
2answers
161 views

Spring Data-JPA versus JPA: Whats the difference?

I am bit confused about difference between Spring Data-JPA and JPA. I know about JPA that it is a specification for persisting the Java Objects to relational database using popular ORM technology i.e. ...
0
votes
0answers
182 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 ...
2
votes
1answer
411 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
77 views

JPA 2: Exception using @Table annotation

when i try to using @Table(" \" Employee \" ") annotation , it generate the exception. there is following exception Exception in thread "main" javax.persistence.PersistenceException: ...
0
votes
0answers
158 views

Getting auto-generated value on insert with JPA 2

I am using JPA 2 to model some entities in my application. In some of the models, there are particular columns whose value is populated on insert. An example of such column would be: ...
0
votes
0answers
208 views

JPA insertion order with unidirectional @OneToMany and @OrderColumn

We are using JPA 2.0 with EclipseLink as our ORM provider. The database is oracle 11g. In our data model we have two entities, shown below, mapped by a unidirectional @OneToMany relationship. ...
0
votes
2answers
135 views

@MappedSuperclass static weaving with EclipseLink and multiple jars

My entities objects are scattered in multiple jars. In jar A I have a base class name MyBase which is annotated with @MappedSuperclass. In jar B there is an entity class which derives from MyBase. The ...
2
votes
1answer
83 views

How to define type of JPA relationship in this case?

I have class User and class Address. Address contains only 4 property: publiс class Address { private Long id; private String country; private String city; private String street; ...
2
votes
1answer
145 views

Handling NULL values in @DiscriminatorColumn

I have a legacy MS SQL Server 2000 datatabase I am trying to map with JPA (EclipseLink to be precise). I have a table "CONTACT1" with a text field "KEY1" which can be either 'Contact' or 'Asset', and ...
2
votes
1answer
153 views

JPA generate tables from entities not doing anything

I am using Eclipse Indigo with Hibernate's JPA-2 implementation. The problem is that when I use that tool to "Generate Tables from Entities" there is no effect at all. I get 45 errors saying my tables ...
0
votes
1answer
141 views

JPA + Multiple ManyToOne Joins with same column

The SchoolClass entity has a composite key made of schoolID, grade and section. The key in student entity is a composite of userName and schoolID. I am trying to add two foreign keys of student ...
0
votes
1answer
148 views

Jpa hibernate sequence pre allocation

I have been going through the JPA documenation and came across pre allocation thing while assiging sequences id . Though it is very good for obvious performances reasons. But I was thinking about the ...
2
votes
2answers
153 views

JPA: ordering query results by collection valued property?

I have an entity that has dollection-valued property: @Entity public class Scenario{ .. @ManyToMany List<Category> categories; .. } Is there any way to query for Scenarios and order ...
1
vote
1answer
99 views

Controlling child entity from master table in JPA

let say I have the below entities @Entity public class Item{ private Country origin; @ManyToOne(optional=true) @JoinColumn(name="origin") public Country getOrigin() { return ...
0
votes
0answers
117 views

using join tables as a parameter for a JPA

In the following entity class from database how to write a query to select from the table using the collection productsCollection2 as a parameter and retreiving productsCollection3.??? Can i use the ...
0
votes
1answer
177 views

Force reload EntityManager

My problem are that my entityManager have my daabase in cache. This are a heavy problem because I´m doing a aplication prepared for many users and I cant show actual data. public ...
0
votes
1answer
63 views

Regarding relationship management in JPA2

I am getting confused about managing entities in a relationship. According to the book PRO JPA2, relationship should be manually configured and assigned at both ends of the relationship. Now, ...
0
votes
2answers
86 views

Selecting a collection does not result in exception in JPA 2

I am having a bit of a trouble understanding this line of code from the book Pro JPA 2 According to the book on page 181. The result type of a select query cannot be a collection; it must be a ...
3
votes
1answer
204 views

How to implement a generic “saveOrUpdate” method with EclipseLink and JPA2

I'm trying to do a method like that, bug got concurrency problems.. seems like my update method do not increment the @Version attribute of my Entity. My code is like that: @Transactional ...
2
votes
2answers
181 views

Annotate m:n relationship with helper class (2 foreign keys + additional attributes) with JPA 2.0

I'm new to JPA 2.0 and have troubles annotating a n:m relationship that uses a foreign key class with additional attributes describing the relationship: Customers can subscribe to several magazines, ...
0
votes
1answer
233 views

org.hibernate.annotations.Entity not being picked up by Hibernate 3.6

I am using hibernate 3.6.7 I am using annotated classes. My classes were annotated with org.hibernate.annotations.Entity. Added the classes to configuration using configuration.addAnnotatedClass() ...
25
votes
4answers
20k views

What's the difference between JPA and Hibernate?

I understand that JPA 2 is a specification and Hibernate is a tool for ORM. Also, I understand that Hibernate has more features than JPA 2. But from a practical point of view, what really is the ...
0
votes
1answer
200 views

how to define <element-collection> for a List<String> field?

If my object has a protected List<String> fileNote; What is the right way to define that relationship in an orm.xml? (note: I do not want to use annotations.)
1
vote
1answer
140 views

JPA entity model proposal

I am trying to design an entity model using JPA2.0 via hibernate. I have a domain like this: There are a bunch of restaurants, so obviously there is a restaurant entity. Each restaurant has a number ...
2
votes
2answers
6k views

JPA CriteriaBuilder - How to use “IN” comparison operator

Can you please help me how to convert the following codes to using "in" operator of criteria builder? I need to filter by using list/array of usernames using "in". I also tried to search using JPA ...
3
votes
1answer
851 views

JPA 2.0 / Hibernate: No supertype found

I have a JSF webapp throwing an exception (see below) when I'm trying to query for entities mapped with Hibernate. What am I doing wrong? Or is it a Bug in Hibernate? How can I fix that? Thanks for ...
0
votes
0answers
114 views

Generic classes mapping with JPA

We are making an application for storing and viewing callcards. Since there is no guarantee what will be on any given callcard, we've modelled it this way: CallCard can have many attributes, so it ...
2
votes
1answer
308 views

Persistence.xml file usage without container [packaging]

I am trying to use jpa/hibernate framework with a simple java console application without a container. According to jpa documentation the persistence.xml file should be placed under the folder ...
2
votes
2answers
664 views

JPA MEMBER OF Query with detached Entity

I want to do a simple JPA MEMBER OF query but I cannot for the life of mine get it to work. Hibernate throws an TransientObjectException with the message "object references an unsaved transient ...
0
votes
1answer
76 views

JPA : Can we use different collection type on either sides of ManyToMany relationship?

Can we use java.util.List in one entity and java.util.Set in related entity for ManyToMany relationship? For example: @Entity public class Employee { @Id @Column(name="EMP_ID") private long ...
2
votes
0answers
202 views

JPA2 equivalent for Hibernate collection cache?

With Hibernate a collection would be cached as follows: class Bar { ... @OneToMany @Cache(usage=CacheConcurrencyStrategy.READ_WRITE) private Collection<Foo> foos; ... } ...
3
votes
3answers
7k views

Multiple writable mappings exception in EclipseLink

I have these tables: Which my intention is : A user can be a company or a person but each one of them have something in common, as username which is the email and password, so I used the JPA Tools ...
0
votes
2answers
345 views

JPA - One to One relationship with shared primary key among multiple tables

Consider the below example: I have 3 tables: Fruit, Orange and Apple id is generated in fruit table and is the primary key here id is also primary key for Orange and Apple (shared primary key) So ...
0
votes
1answer
51 views

Working with relations in ORM

What is the best/common solution (best practices) to working with relationships in ORM (from long-life project view)? 1) E.g. I have Oracle HR schema. Is it ok to create relations between every ...
1
vote
1answer
4k views

org.hibernate.MappingException: Unknown entity: java.lang.Long

I am trying to create a named-native-query that returns a Long. Here is my orm.xml file (simplified as much as possible) <?xml version="1.0" encoding="UTF-8"?> <entity-mappings ...
2
votes
2answers
2k views

How to configure an Element-collection to map an existing DB table in JPA orm.xml configuration?

I have migrated an app from a full-Hibernate featured one to a JPA/Hibernate based-one and I have a problem with my JPA mapping. We have managed to use orm.xml to map our entities. Everything was ...
0
votes
1answer
599 views

Does JPA @ElementCollection annotation always produce an one-to-many relationship?

For this question, consider the following sample: @Entity public class File { public static enum Permission { READABLE, WRITEABLE, EXECUTABLE } @ElementCollection ...
1
vote
1answer
143 views

JPA Key generation in the class of the many side

I am new to JPA. I want to comprehed what kind of assistence gives me JPA in persisting objects to database. My example: a Person class is related to an Address class. Each person can have multiple ...
1
vote
1answer
3k views

@ElementCollection, @CollectionTable and Enum - Strange delete/insert behavior

@Entity public class User{ @ElementCollection @Enumerated(EnumType.STRING) @CollectionTable(name = "SEC_USER_ROLES", joinColumns = @JoinColumn(name = "USER_ID", ...
1
vote
2answers
756 views

JPA persistence using multiple threads

I have a problem when I try to persist objects using multiple threads. Details : Suppose I have an object PaymentOrder which has a list of PaymentGroup (One to Many relationship) and PaymentGroup ...
0
votes
0answers
512 views

SOLVED: JPA @SecondaryTables, why my primary table is empty ? while the secondary tables is not empty?

SOLVED, after switch to MySQL everything look fine, but i still doesn't know what the problem is. i've simple POJO like : @Entity @Table(name = "t_address") @SecondaryTables({ ...
0
votes
1answer
468 views

Caching with Echache + hibernate

Hi in my application i have few small tables and i cache them All at the server startup in a Map. I want to implement same functionality by Ecache + hibernate combination my class looks like ...
2
votes
2answers
4k views

Limit in subquery with JPQL

I'd like to get the average price of my top 100 products via JPA2. The query should look something like this (my sql is a little rusty): select avg(price) from ( select p.price from Product p ...
0
votes
2answers
2k views

JTA transaction in JPA

My currect project includes, JPA2.0 on Hibernate platform, HSQLDB2.0 and JBoss5.1 . I have also defined datasource in JBoss under the name hmc. Persistence.xml looks like : <persistence-unit ...
0
votes
2answers
671 views

Persist multiple objects at one go

My current project uses JPA and HSQLDB. I would like to persist multiple related objcts at one go, is that by any means possible in JPA? Ex: Suppose there are two entities like Person and ...
0
votes
1answer
58 views

is there delete orphen in JPA

I have group and user where group must have an owner otherwise he couldn't exist in hibernate in order to achieve this outcome I do : @ManyToOne @org.hibernate.annotations.CascadeType.DELETE_ORPHAN ...
2
votes
1answer
2k views

How can I retrieve multiple objects with JPA?

I'm using JPA2/hibernate with this data model: class Stock { @ManyToOne private StockGroup stockGroup; private boolean visible; } class StockGroup { @OneToMany(mappedBy = "stockGroup") ...
4
votes
7answers
5k views

Avoid insert 'null' values to database table via JPA

im starting with JPA2 and feel quite comfortbale so far. But I have a problem when persisting Entities with null property values for NON NULL database fields with default value. I would like to be ...

1 2 3