Hibernate Annotations provide an alternative method of supplying metadata which maps Java objects to the database tables they represent.

learn more… | top users | synonyms

0
votes
0answers
45 views

Hibernate: One-to-many entity loads slowly

I had a performance issue with my entity classes and I decided to use the org.hibernate.annotations.BatchSize annotation with lazy loading, as I had read about it here. But, even this couldn't ...
0
votes
0answers
17 views

Annotation exception

I had this exception when trying to insert into a table. org.springframework.dao.InvalidDataAccessResourceUsageException: could not load an entity: [model.Structure#5]; nested exception is ...
0
votes
1answer
36 views

Iterating a list with hibernate query

I have userTable uid username password 1 stephen 1542S 2 james 8452b Store procedure name: sp_gridview query: select * from userTable List list=null; list=hibernateTemplate. ...
1
vote
1answer
73 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
1answer
35 views

Hibernate Many-To-One using other schema on DB2

I am using hibernate-annotation (entitymanager) to handle my db2 databases using separate schema. My main schema is called "mainschema". It has a table for fileuploads. Then I have some other schema ...
0
votes
2answers
71 views

Logback not working with hibernate

i'm trying to use logback with hibernate, seems so easy but i can't get it working hibernate.cfg.xml <!-- DB Properties --> <property ...
0
votes
1answer
102 views

org.hibernate.MappingException: Repeated column in mapping for entity: Invoice column: INVOICE_ID

Hibernate is saying that mapping for the column INVOICE_ID is repeated. But I am unable to understand this exception. Please Help !! My Invoice class is given below : @Entity ...
0
votes
1answer
263 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 ...
1
vote
3answers
71 views

How can i refresh my primary key column?

Till recent time i was using hibernate @Entity annotation to map to database tables.All the primary keys are annotated with @GeneratedValue(strategy = GenerationType.IDENTITY) I got a scenario where ...
0
votes
2answers
155 views

How to make this select * from two joined tables query in HQL form?

I had two hibernate entity here with annotation: @Entity @Table(name = "CLIENT") public class Client { private Long pkClient; private String name; @Id ...
0
votes
1answer
101 views

What is the best solution to add/delete a many-to-one mapped object with hibernate and struts

Ticket class: @Entity @Table(name="tickets") public class Ticket implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id") private Long id; ...
0
votes
0answers
59 views

3 level deep Hibernate Transaction doesn't Cascade until the root Entity when saved updated

I have a situation where I have 3 entities like this in HIBERNATE public class Client extends AbstractEntity implements Serializable{ @OneToMany(fetch = FetchType.LAZY, cascade={CascadeType.ALL}, ...
2
votes
1answer
99 views

How to annotate an EnumMap with an Enum as a value in hibernate?

I'm using Hibernate annotations in a class containing a map of properties, which are basically <name, value> pairs. The property names are defined in a PROPERTY enum, and each property has a set ...
0
votes
1answer
135 views

JPA Annotations - How to retrieve a single value from a different table than the current object?

How do you map a single value from a column in another table to the current object? Example: class Foo { @Id @Column(name="FOO_ID") private String fooId; @Column(name="FOO_A") ...
0
votes
4answers
103 views

How can i insert a row using hibernate method?

I am trying to insert a row into a relation table Stock Category. I am following this example. http://www.mkyong.com/hibernate/hibernate-many-to-many-example-join-table-extra-column- annotation/ ...
0
votes
3answers
58 views

How i can find the exact error?

I am getting the below error. But i am unable to find what the error is. Caused by: java.lang.NullPointerException at ...
0
votes
2answers
492 views

How can I create a foreign key constraint using hibernate annotations?

I am trying to use hibernate annotation for writing a model class for my database tables. I have two tables each having a primary key User and Question. @Entity @Table(name="USER") public class ...
0
votes
0answers
72 views

Annotation for unique constraint for single column

I would like to instruct Hibernate to create unique constraint on a single column. I have set hibernate.hbm2ddl.auto=update in the hibernate configuration and my code is shown below: @Column(name = ...
0
votes
2answers
74 views

Many to mapping using hibernate annotations?

I have 3 tables in my database. Schema i have developed here. One employee can attend multiple meetings and one meeting can be attained by multiple employees. http://sqlfiddle.com/#!4/653a40 I am ...
1
vote
1answer
207 views

@UniqueConstraint and @Column(unique = true) in hibernate annotation

What is difference between @UniqueConstraint and @Column(unique = true)? For example: @Table( name = "product_serial_group_mask", uniqueConstraints = {@UniqueConstraint(columnNames = {"mask", ...
1
vote
0answers
210 views

Integrity constraint violated just when I commit the transaction (SOLVED)

I'm using Hibernate 4.0 Final and ojdbc6 to develop my web application. Everything is ok except when I try to insert a new parent/child relationship. First of all, these are the entities: @Entity ...
1
vote
0answers
78 views

Hibernate selectBeforeUpdate property @org.hibernate.Entity

When we set selectBeforeUpdate=true, before making update, Hibernate runs Select query checks if current objects is same as that there in DB and then decide wether to fire Update query or not. My ...
2
votes
1answer
53 views

How to update child when parent is deleted

my requirement is when i delete the parent ,child should not be deleted but instead of deleting child,one of the child column department_ID which is foreign key must be update with some value , say ...
0
votes
0answers
98 views

Hibernate error: mixing nullable and non nullable properties on hbm2java code

I'm using the hibernate3-maven-plugin to query an Oracle10g database and generate java classes with JPA annotations, using the hbm2java goal. Then I use spring to configure a session factory that ...
0
votes
2answers
227 views

Deleting issue on parent to child relationship using hibernate annotation

Requirement is when parent is deleted all related child must be deleted .I am facing problem on deletion of child when parent is deleted using hibernate annotation my parent table is Employee and ...
0
votes
2answers
88 views

Hibernate OneToMany with JoinTable ID generation

Could somebody help me in setting appropriate annotation in hibernate for following case: I have three tables: Account, Card and AccountCard. AccountCard is joining table for OneToMany relationship ...
0
votes
1answer
48 views

org.hibernate.MappingException only when trying to use Hibernate Console perspective

I've three persistent classes which work well. Now, I'm trying to use Hibernate Console perspective in order to visualize the relationships between them. So I tried configuring using Hibernate ...
0
votes
0answers
279 views

Hibernate annotations many to many inverse relationship with eager fetch

Hi there, i have a model of user and role with many to many relationship as follows @Entity @Table(name = "USER") @Indexed @XmlRootElement public class User extends BaseObject ...
0
votes
2answers
215 views

Handling multiple validation annotations error messages

I am trying out Validations in SpringMVC using annotations... I used 2 annotations for a field to validate @NotEmpty(message="required") @Size(min="3" max="8" message="Out of range") private ...
0
votes
0answers
80 views

Way to make generation of surrogate keys in hibernate independent from db type

I use hsqld for test and mysql for uat/production. For some DTO MyModel the generation of the surrogate key for hsqldb with hibernate annotations looks f.ex. like this: public class MyModel { @Id ...
1
vote
3answers
93 views

hibernate annotations: map a list that keeps order

I want to do a one to many mapping that keeps order. The order itself is complex and related to business logic and does not have a single field or simple logic that can represent it. What I want is ...
1
vote
0answers
71 views

Can we use Annotations completely for the whole project?

I just wanna ask one thing regarding Annotations. I searched in google a lot and I read from many sites, BUT still iam not convinced. So, thats why i wanna ask myself. Here are the queries: a) I ...
0
votes
3answers
565 views

java.lang.NoSuchMethodError: org.hibernate.cfg.Configuration.addAnnotatedClass

I am new to JPA & hibernate, when I try this tutorial . I added the following provider in my persistence.xml, <provider>org.hibernate.ejb.HibernatePersistence</provider> and I am ...
1
vote
0answers
59 views

Two Entity with Common identifier @id in HIbernate

I am Using Spring3+Hibernate 3.0. I Have two beans (@Entity) Projects And Participants. I want both beans(Projects and Participants) should have common @ID identifier it means projects and ...
0
votes
2answers
182 views

Hibernate and PostgreSQL: Can I configure GenerationType.IDENTITY, where each id column's default value comes from a shared sequence?

Ok I am not 100% sure if I really want this but currently it seems like a good idea. I configure my entities like this: @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long id = 0; ...
0
votes
3answers
52 views

All my fields have a prefix. How can I tell that to hibernate?

E.g. I have: @Column(name = "username") private String m_username; Note that the @Column annotation only affects the database column name. Hibernate still thinks the name of the property is ...
0
votes
1answer
48 views

How can I place the hibernate annotations on the fields, but always have property access?

I am asking because I would like to use code generation for the getters/setter. And also because I would prefer the mapping annotations to appear at the top of the class, where I declare the fields. ...
0
votes
1answer
140 views

HIbernate Many to Many with self entity Using annotation

I have a problem in Hibernate Many to Many relationships. I have one table called Projects that contains the following fields: (Project id,Project Title,Created Date,Project Manager) I also ...
0
votes
1answer
505 views

org.hibernate.QueryException: duplicate association path for @ManyToOne Criteria

I have two classes which has a relationship between them. These are com.edfx.adb.persist.Activity: package com.edfx.adb.persist.entity; import java.util.List; import javax.persistence.Column; ...
0
votes
0answers
59 views

Hibernate and generated values

I have a column in my table that is mapped like this in my Hibernate JPA model object: @Generated(GenerationTime.INSERT) @Column(name = "column", nullable = false, unique = false, insertable = true, ...
0
votes
1answer
284 views

HQL query for the Entity (single table) with parent-children relations

I'm trying to create simple select query with HQL. There is an Entity that will be used in query. It Looks like the following: @Entity @Table(name = "my_table") public class MyTable { @Id ...
2
votes
1answer
137 views

Hibernate OneToMany Mapping - Where Set of Entities is getting saved?

I have two entity class named Customer and Activity. Customer has customerId,customerName,activities here activities holds set of Activity corresponds to each Customer mapped by @OneToMany(mappedBy ...
0
votes
1answer
42 views

date values saved to database are different with what they should be

Using hibernate and annotation, I am trying to save values to a table that has a date column (I am using Mysql). The problem is that the date values saved to database are somehow different with what ...
0
votes
1answer
90 views

JPA @Embedded annotation flagged as error In netbeans

In NETBEANS error shows at line 2 : @Embedded public SchoolDetails getSchoolDetails() { return schoolDetails; } Basic attributes can only be of the following types: Java ...
0
votes
1answer
128 views

Error using hibernate anotations for soft delete

I have the following JPA entity @SQLDelete(sql="UPDATE service SET date_deletion = CURRENT_DATE() WHERE id = ?") @Where(clause="date_deletion IS NULL ") public class Service { ... } Select work ok ...
0
votes
1answer
457 views

Java Hibernate : org.hibernate.MappingException: Unknown entity

i have a problem using hibernate with my java project and i hope that you can help me: First, here is some of my code: The Entity class package de.zaed.entities; import ...
1
vote
2answers
409 views

Hibernate Annotations - @MappedSuperclass How to override column identifier

I'm working with Hibernate Annotations and the issue that I'm trying to solve goes as follows: I need to have 2 different @Entity classes with the same columns mapping but with a different ...
0
votes
0answers
119 views

Hibernate maxResults with OneToMany Fetch counts children as result rows

I have a class Video that has a OneToMany annotation to another class Comment. @OneToMany(fetch = FetchType.LAZY, mappedBy = "videoId", cascade = CascadeType.ALL, orphanRemoval = true) @Sort(type = ...
0
votes
1answer
96 views

Hibernate OneToMany OrderBy messes up main query

I have a class Video that I'm querying for in my Hibernate and I am ordering the results by Order.desc("id"). The query works as expected. However, if I add a @OneToMany annotation in Video to include ...
2
votes
1answer
113 views

How to add a secondary index using java hibernate annotations?

I have the following package model.database; import static javax.persistence.GenerationType.IDENTITY; import java.io.Serializable; import javax.persistence.Column; import ...

1 2 3 4 5