-3
votes
0answers
33 views

How does the JPA hide implementation of in-memory and relational database items from the applicaton developer with reference to toplink type mappings? [closed]

Please can someone tell me how does the (or a) JPA hide the implementation of in-memory, and relational database items, from the application developer and what the relevance of toplink type mappings ...
0
votes
1answer
183 views

Spring LocalContainerEntityManagerFactoryBean scanForPackages and Hibernate package-level type definitions

In Spring 3.1 and higher the LocalContainerEntityManagerFactoryBean is supposed to be able to configure the JPA EntityManagerFactory without a persistence.xml. The configuration is included in the ...
1
vote
1answer
82 views

hql inner join Path expected for join! error

hi have following entities; @Entity public class FilesInfo { @Id @GeneratedValue private Integer id; private String name; private String url; @OneToMany(cascade= ...
0
votes
1answer
22 views

Spring request bind and hibernate presist

For Spring MVC application as ORM jpa with hibernate was configured. Every request will be in usual form submit and response will be json so configured Jackson Json and used @ResponseBody . Everything ...
2
votes
1answer
163 views

JPA enumerated types mapping. Best approach

As usual Java enum types have corresponding codes and name description. And Java classes that contain such fields, contain them as Enum: public enum MyEnum{ SOMEINSTANCE(1, "test1"), ...
0
votes
0answers
19 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). ...
0
votes
1answer
80 views

Hibernate JPA foreign key no parent

when testing my entities i get the error foreign key no parent; FKF7EC361BFEA0E826 table: DEVICE_DEVICE_PRESETS i'm testing by creating the entities in my device class constructor the error happens ...
0
votes
1answer
38 views

Hibernate JPA Cannot Create due to FK

When I try to create a new category in my application I am getting the below error which is complaining about a FK constraint. However the FK it is complaining about maps the Category Description to ...
0
votes
1answer
403 views

org.hibernate.MappingException: Could not determine type for: java.util.Set, at table: USERS, for columns: [org.hibernate.mapping.Column(invoices)]

I have a problem that Hibernate is unable to determine the type for Set at the table USERS. I am trying to create a foreign key of table INVOICES through one-to-many relationship. One User can ...
0
votes
0answers
35 views

Is there an easy way to map a CollectionOfElement(Set/List…) property to a single database column?

Normally, I am using the CollectionOfElement annotation to map a collection of embeded object. This will always requires the creation of another table. When the master Entity contains two or more ...
0
votes
1answer
96 views

Wrong Join type or missing criteria, multiple tables with one to many

I would like to use the below join in several of my entities, however anytime I try I run into a FK issue. I believe it is because it is using the ID column of the entity to match to the ...
0
votes
1answer
255 views

JPA - Hibernate : Map several tables on one column of another

Conserider following table structure country ======= id code name_id label ====== id code label_value_id translations ============= id ref_id language value Now I need to find a JPA mapping to ...
0
votes
2answers
241 views

Difference between EntityManagerFactory and SessionFactory? [duplicate]

I am new to Hibernate and JPA .Right now I am using EntityManagerFactory Instance to create EntityManager then I have UnWrap this EntityManager into Session using entityManager = ...
0
votes
2answers
125 views

persistencecontext makes queries empty

I recently changed my JPA design for that : persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
1
vote
1answer
864 views

Error creating bean with name 'entityManagerFactory'+ NoClassDefFoundError: org/hibernate/MappingException

I am trying to create a simple spring MVC project with MySQL, but I am getting some error when trying to connect my project with MySQL database using hibernate and JPA. But getting below exception: ...
0
votes
1answer
410 views

JPA - OneToMany association between person and address but cannot create @NamedQuery with association

i am new to hibernate and jpa. Basically i have 2 tables Person and Address. A person can have many address. I have a OnetoMany relationship between person and address. I want to get the firstname and ...
0
votes
1answer
227 views

Issue to create jpa - hibernate inner join query

i am new to jpa hibernate, i have an inner join query in sql but not sure how to create the same query in jpa-hibernate syntax: Basically i have 3 tables: ...
0
votes
1answer
306 views

ORA-01400: cannot insert NULL in @manytomany unidierctional

I am inserting a User object with roles(existing) roles . It is giving me unable insert null in user_role.id Schema @Entity @Table(name = "user_data") public class User extends Serializable { ...
0
votes
1answer
149 views

Explicitly changing the name of a column with Hibernate

How can you rename a field name in a table which generates Hibernate? When you create: @ManyToMany(targetEntity = GroupRightEntity.class) or @ManyToMany(targetEntity = UserRightEntity.class) Now ...
0
votes
2answers
441 views

Getting error Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class

I am newbie to JPA/Hyperjaxb arena. My goal is to generate a many-to-many mapping between Author and Book tables (postgres database). In the database- Author table has columns - id, name and Book ...
0
votes
2answers
811 views

org.hibernate.MappingException: Foreign key XXX must have same number of columns as the referenced primary key YYY

Having a following SQL table: create table users_posts_ratings_map ( postId integer not null references posts (id), userId integer not null references users (id), ratingId integer not null ...
0
votes
1answer
218 views

Hibernate: fetching objects collections without multiple bags

When I am trying to get list of my Employee entity I am getting this error: org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags My Employee entity class has ...
1
vote
0answers
193 views

Multi-Column Composite Key Mapping with Hibernate and JPA

I have been trying for a few days now to get the composite key to work looking at the many example on the web, but still am missing something since it isn't working. In the code below ...
2
votes
4answers
541 views

Hibernate native query with positional parameters

I wrote native sql query instead of using hql and faced with roblem Position beyond number of declared ordinal parameters. Remember that ordinal parameters are 1-based! Position: 1 <sql-query ...
0
votes
1answer
65 views

Lazy-loading association does not properly initialize child association

I have the following entities: @Entity public class Foo { @ManyToOne(optional = false) // I've tried @OneToOne also, same result @JoinColumn(name = "bar_id") private Bar bar; // this ...
0
votes
1answer
407 views

org.hibernate.MappingException: Composite primary key as a foreign key in another table

I have problem with referencing to the composite primary key in one class from another, with @OneToMany annotation. My class with composite primary key is below: @Entity @Table(name = "name_entry") ...
1
vote
1answer
477 views

Doesn't work setting default value of property in Hibernate

I have a boolean property in my entity. Here's my annotations for it: @Column(name = "IS_ACTIVE", nullable = false, columnDefinition="BIT DEFAULT 1", length = 1) public Boolean getActive() { ...
0
votes
0answers
176 views

Hibernate not setting ManyToOne and not deleting before inserting

I have a basic @OneToMany mapping. For simplicitty, I have omitted getters/setters class Foo { @OneToMany(mappedBy = "foo", cascade = CascadeType.ALL, fetch = FetchType.EAGER) private ...
1
vote
2answers
82 views

Hibernate. How to map own class as type of property in entity?

How to map with Hibernate my own class as type of property in other class? For example I have class Address and class User. And I try to map as following: public class User { private Long id; ...
0
votes
0answers
761 views

No identifier specified for entity.. exception .. spring and jpa [closed]

I keep getting the following exception: org.hibernate.AnnotationException: No identifier specified for entity: My entity is as follows:.. I have read up other posts, and I seem to be doing ...
1
vote
1answer
468 views

Hibernate mapping Interface with multiple targetEntity

I am trying to develop an application with Hibernate and javax.persistence Annotations. I have some troubles in mapping an interface. I have mapped my interface as @MappedSuperclass and I have ...
0
votes
0answers
147 views

When using Eclipse RCP, why do I get “org.hibernate.hql.internal.ast.QuerySyntaxException: Class is not mapped”

I have a small Spring / JPA application, built with Maven, that offers a data access service for some data. this application works with a few other applications by including it as a dependency. I am ...
1
vote
2answers
150 views

Hibernate ordering in sql

Is it possible to sort the Set collection using hibernate, in sql without using SortedSet interface, without using @OrderBy annotation - just using criteria's addOrder. I've tried it and it adds ...
0
votes
1answer
217 views

Disabling JPA Hibernate schema validation for a single entity

I have a JPA entity that I use as the result class of a native query. As such, the entity is not valid per se (as it does not have a table). I use Hibernate 4.1.x as my JPA provider, which performs a ...
0
votes
1answer
49 views

What is column mapping kind in JPA Hibernate

What is column mapping kind in JPA (Hibernate implementation) entity and what are the differences between these three options available: basic id version
0
votes
1answer
1k views

Hibernate issue with @OneToMany @JoinTable and update operation

I am running into a somewhat strange issue; I have the following JPA mapping: @Entity public class Location { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "LOCATION_ID") ...
1
vote
4answers
4k views

java.lang.NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval()

I have a maven project that uses spring, hibernate (3.6.4), GWT(2.3), drools,.... Everything used to work fine till I began using hibernate OneToMany, ManyToMany relations... When I run the app from ...
0
votes
1answer
362 views

Hibernate/JPA @OneToOne Returning Null Pointer Exception

Basic Stack: Spring/Spring Security/Hibernate with Glassfish Trying to join two columns in two tables, but the data is not being returned. The code compiles and deploys with out a problem. When ...
1
vote
1answer
396 views

Hibernate: How to set mapped by attribute when the Many side of the Many to one relationship is maintained in an object in an embedded collection

I have a 2 entities and an embedded object. To keep the discussion generic, I am going to call them Project, ProjectAssociation (embedded object), employee. Employees are associated to Project using ...
1
vote
3answers
1k views

Can't create composite primary key with foreign key in PLAY 2.0

This is a situation I want to represent in my PLAY project: table clients { client_id (pk), description } table items { client_id (fk, pk), item_id (pk) } In the 'items' table ...
0
votes
2answers
369 views

Mapping a POJO to a table dynamically in hibernate using annotations

In my DB i have around 20+ of tables named like 'a_emp_transactions', 'b_emp_transaction' and so on where the table structure was same for all the tables. Basically these tables are divided based on ...
0
votes
1answer
526 views

Issue while updating @OneToMany collection

I am stuck at a point where i am trying to update a @OneToMany mapping. Problem: I have 2 entities: Criteria and Tasks. A criteria can contain multiple tasks. class Criteria { ...
2
votes
1answer
108 views

How do I setup annotations for JOINED inheritance with composite PK in hibernate?

I am new to hibernate and having a tough time trying to wrap my head around setting up Joined inheritance with composite Primary Key. With my current setup, I get a: JDBCException: could not insert: ...
0
votes
1answer
295 views

Is it possible to scan Entities in jar files using JPA and hibernate

I have the following situation : Project A - Contains a few entities and is independent Project B - Contains a few entities and is independent Project C - Contains few entities and is dependent on ...
-2
votes
1answer
762 views

Hibernate Exception: Trying to map a Collection OneToMany without JoinTable

I'm trying to map an entity the contains a Collection without use JoinTable. The exception that I keep having is: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an ...
0
votes
0answers
297 views

Hibernate Cascade operation on OneToMany relation gives update query

@Entity @Table(name="table1") public class Parent{ @Id @Column(name="Parentid") private String Parentid; @OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY) ...
0
votes
2answers
360 views

JPA Map<User, String> mapping

How can I map a Map in JPA? I try the following mapping: @ManyToMany public Map<User, String> rsvp; But I get the following errors: A JPA error occurred (Unable to build ...
0
votes
1answer
245 views

JPA Query - JOIN Clause

I have two tables Table A Table B Table A contains Column X Column Y Column Z Column W Tables B Contains Column P Column Q Column R Column W Column W is common in both the tables. and their ...
1
vote
0answers
80 views

Retrieve Node attribute value from hibernate-mapping

Suppose I have a entity class definition in hbm mapping file as below <class entity-name="user" node="User" table="dbo.user"> Is there any way to use ClassMetadata or AbstractEntityPersister ...
2
votes
1answer
760 views

Incorrect mapping for length attribute in JPA @Column

I'm using Hibernate 4.0.0.Final as the JPA persistence provider for an application, with an Oracle 11g database (created with UTF-8 encoding) and Oracle WebLogic 11g as the application server. The ...

1 2