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

learn more… | top users | synonyms

3
votes
1answer
63 views
+50

How to avoid updating unchanged fields?

I need to configure my hibernate to avoid updating those fields that has not been changed. So I have added the following annotation to my class but it crossed the Entity, and dynamicUpdate. ...
1
vote
1answer
29 views

How to load only ids from Many to Many mapping tables?

In a Many to Many relation between two table with a Mapping table in between, how can I only load ids for the second entity. Following is the example to explain what I want to achieve here. Below is ...
0
votes
0answers
15 views

How to map a “map” property in case when keys are another collection property members using annotations?

I have entity stub as follows: @Entity public class Company extends AbstractEntity{ private String name; private String address; private String zipCode; private String city; ...
0
votes
1answer
43 views

Hibernate @ManyToMany save

I have a @ManyToMany relation between tow tables (User and Work) in my Code as follow: ... public class User implements Serializable{ @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private ...
0
votes
1answer
32 views

Hibernate Mapping Parent/Child Relationship

I have a database table which contains a simple self parent/child relationship (categories) like this: +------------+----------+--------------------+ | categoryid | parentid | category_name | ...
0
votes
1answer
36 views

Issue with Hibernate @SequenceGenerator in Spring 3 application

we have deployed Spring 3 + Hibernate application on 2 load balancing servers. After 50 insertions into the Database, hibernate is not calling the DB sequence nextval, it continuously incrementing ...
4
votes
0answers
88 views

How to create meta annotations on field level?

I have this hibernate class with annotations: @Entity public class SimponsFamily{ @Id @TableGenerator(name = ENTITY_ID_GENERATOR, table = ENTITY_ID_GENERATOR_TABLE, ...
0
votes
1answer
22 views

Specifying index method when using @Index annotation

I'm using (spatial) hibernate annotations to create a schema for a spatial application that is implemented on top of PostGIS. When creating the database schema from my annotated classes, I'm in need ...
0
votes
3answers
184 views

hibernate two tables per one entity

I have one entity - "User" Its described by User.class. Hibernate create one table per entity, so when i call session.save(user), my data is always save to this table. Now i need another table for ...
0
votes
0answers
66 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
51 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
76 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
48 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
88 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
183 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
421 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
74 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
290 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
104 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
62 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
108 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
167 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
135 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
68 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
854 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
77 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
79 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
309 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
287 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
108 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
59 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
128 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
316 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
92 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
61 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
334 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
224 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
99 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
108 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
75 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
766 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
60 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
225 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
57 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
53 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
194 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
649 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
61 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
363 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 ...

1 2 3 4 5 6