Tagged Questions
Hibernate Annotations provide an alternative method of supplying metadata which maps Java objects to the database tables they represent.
16
votes
2answers
924 views
Specify foreign key constraint name when using Map and @ElementCollection with Hibernate
I have a sort of exotic mapping for a field:
@ElementCollection
@CollectionTable(name = "studentGradeLevel", joinColumns = @JoinColumn(name = "studentId"))
@MapKeyJoinColumn(name = "schoolYearId")
...
9
votes
2answers
4k views
Hibernate Mapping Package
I'm using Hibernate Annotations.
In all my model classes I annotate like this:
@Entity
@Table
public class SomeModelClass {
//
}
My hibernate.cfg.xml is
<hibernate-configuration>
...
7
votes
2answers
907 views
Play! Framework - Using MySQL and MongoDB for same application
Is it possible to user MySQL Database and MongoDb database for same project using Play! framework?
for example:
I want
@Entity Person to interact with my MySQL database and
@Entity ...
6
votes
3answers
556 views
Hibernate Annotation for Entity existing in more than 1 catalog
I have a Person entity mapped by Hibernate to a database table in a database catalog "Active". After a period of time, records in this database table in the "Active" catalog are archived/moved to an ...
6
votes
1answer
2k views
Hibernate many-to-many association with the same entity
Another Hibernate question... :P
Using Hibernate's Annotations framework, I have a User entity. Each User can have a collection of friends: a Collection of other Users. However, I have not been able ...
5
votes
3answers
157 views
Calculating and storing precomputed average with Hibernate
Say I have a set of products and each product has a set of reviews. Each review has a score. I will need the average of the scores much more often then I will need the actual reviews. Are there any ...
5
votes
1answer
2k views
How to map a Map<String,Double>
I tried
@ManyToMany(cascade = CascadeType.ALL)
Map<String, Double> data = new HashMap<String, Double>();
but it produces the error :
org.hibernate.AnnotationException: Use of ...
5
votes
2answers
1k views
How to validate database schema programmatically in hibernate with annotations?
It seems that org.hibernate.cfg.Configuration object can be used to perform validation programmatically, by calling the validateSchema method.
However, this method needs dialect and databaseMetadata ...
4
votes
5answers
255 views
Hibernate, SQL Server: How could I use default value as value from another column
For example: I have COLUMN_PK column of type int identity(1,1) and column COLUMN_NUM pf type int, how could I define default value for COLUMN_NUM - value of COLUMN_PK?
So if I have entity with not ...
4
votes
1answer
1k views
How do I get Hibernate to call my custom typedef?
I'm trying to define a CompositeUserType to handle a specific type in my JPA/Hibernate app. I have a CompositeUserType called ApplicationMessageType that is designed to handle my mapping.
According ...
4
votes
2answers
1k views
Hibernate annotated many-to-one not adding child to parent Collection
I have the following annotated Hibernate entity classes:
@Entity
public class Cat {
@Column(name = "ID") @GeneratedValue(strategy = GenerationType.AUTO) @Id
private Long id;
...
3
votes
1answer
266 views
Confusion: @NotNull vs @Column(nullable = false)
When they appear on a field/getter of an @Entity, what is the difference between them? (I persist the Entity through Hibernate).
What framework and/or specification each one of them belongs to?
...
3
votes
2answers
1k views
Maven + Hibernate annotations schema generation
I have a bunch of classes annotated with hibernate annotations. I'm using Maven, Hibernate and Spring. How can I generated the DB schema using hibernate3-maven-plugin's hbm2ddl?
3
votes
1answer
3k views
Hibernate mapping - “Could not determine type”
I currently have the following objects persisting successfully:
Person first name, etc.
Exams title, date, etc.
I'd like to now create a third table Exam results. For this table I believe it ...
2
votes
1answer
51 views
java.lang.AssertionError: one method tests correctly but a similar one does not
I have the following 2 methods I'm testing from a DAO:
public List<T> findAll() {
if (logger.isDebugEnabled()) {
logger.debug("findAll");
}
return ...
2
votes
1answer
233 views
How can I prevent Hibernate from updating NULL values
Is there a setting in hibernate to ignore null values of properties when saving a hibernate object?
NOTE
In my case I am de-serializing JSON to a Hibernate Pojo via Jackson.
The JSON only contains ...
2
votes
2answers
538 views
hibernate many to many mappings for join table with extra columns , surrogate key, additional primary key
I'm having hard time to resolve entity mappings (using annotations) for the following scenarios ( from legacy db)
Scenario 1:
Table A
A_ID (PK)
Table B
B_ID (PK)
TABLE A_B
AB_ID (PK) ...
2
votes
1answer
783 views
How to enable hibernate filter for sessionFactory.getCurrentSession()?
Say there is a User table with structure:
User
List item
userId (PK)
company (PK)
userName
address ...etc
And I want to retrieve users only for the current company (company can be changed by the ...
2
votes
2answers
1k views
Disable Lazy Loading in Hibernate
How do I disable lazy loading in Hibernate? I am using persistence annotations, not an hbm xml file.
I am fetching a single object by ID and want all properties loaded. The session is closed ...
2
votes
2answers
794 views
Hibernate @Id @GeneratedValue annotation doesn't recognise increment ID generated by DB2 Database
Inserting a second record using Hibernate 3 into DB2 v9.x where a column has a Unique primary key column Id generated by DB2 doesn't work with persisting my Hibernate entity.
Inserting the first ...
2
votes
1answer
183 views
Hibernate Filter Programmatically
How to programmatically achieve the same result (as the following annotation would achieve)? Or injecting the value 'SMITH' in a spring configuration file?
@Filter(name="smithFilter", ...
2
votes
1answer
2k views
mappedBy reference an unknown target entity property
I am having an issue in setting up a one to many relationship in my annotated object.
I have the following:
@MappedSuperclass
public abstract class MappedModel
{
@Id
...
2
votes
2answers
365 views
Mapping multiple-row per item objects in Hibernate
I'm encountering somewhat of an, uh, unorthodox design and I'm not quite sure how to handle it. The table I'm trying to map looks like:
TABLE example {
ID INT,
CATEGORY VARCHAR,
PROPERTY ...
2
votes
1answer
843 views
HibernateToolTask (hbm2hbmxml) doesn't generate index in hibernate-mapping from @org.hibernate.annotations.Index annotations
I am trying to generate hibernate-mapping from POJOs with hibernate annotations.
Then I want to use liquibase to generate database schema.
So I need indexes to be defined in my POJOs.
Sample POJO:
...
2
votes
6answers
8k views
What is a IncompatibleClassChangeError exception in Java?
i am working on a small application and I am trying to use Hibernate Annotations to map my entities. I wanted to test if everything is alright when i got this exception :
Exception in thread ...
2
votes
2answers
1k views
Creating Indexes on DB with Hibernate @Index Annotation
I have annotation-driven hibernate capabilies on my project.
Now I want to create an index over a column. My current column definition is
@NotNull
@Column(name = "hash")
private String hash;
and I ...
2
votes
2answers
2k views
JPA/Hibernate DDL generation; CHAR vs. VARCHAR
I have a JPA/Hibernate data model that I am using the Hibernate hbm2ddl tool to generate database DDL. I have some strings that should be CHAR and some that may be VARCHAR in the database. I want to ...
1
vote
1answer
35 views
java.lang.AssertionError and both entities are the same? What could cause this?
I am getting the following error when testing my DAO using Assert.AssertEquals() method:
java.lang.AssertionError: expected: ...
1
vote
0answers
51 views
hibernate annotations schema generation many-to-many OnDelete cascade
I have a ManyToMany relation defined with hibernate annotations and I create my schema with hbm2ddl, the join table is created with the foreign keys, but I didn't manage to add the 'on delete cascade' ...
1
vote
2answers
166 views
What use in place of Annotations Configuration in Hibernate?
I used AnnotationConfiguration before but now is deprecated
AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.addAnnotatedClass(Product.class);
factory = cfg.buildSessionFactory();
...
1
vote
2answers
259 views
NamedQuery defined in DAO annotation not found by Hibernate session factory
I use Spring along with Hibernate. In my DAO, I defined a NamedQuery which is not found by the session factory, although I have added the package of that DAO to the packagesToScan.
My DAO:
/**
*
...
1
vote
1answer
74 views
How do you map collections conditionally with Hibernate annotations?
If I have a class structure which looks like the following (annotations removed):
public class Person {
String store;
Swatch swatch;
Collection<Paint> paints;
}
public class Swatch {
...
1
vote
1answer
100 views
Issue with sequence why two entity are sharing the same sequence when generating schema with hbm2ddl ?
I am using hbm2ddl in my hibernate based application to generate the db schema. The value of hibernate.hbm2ddl.auto property is create-drop.
I am using @Entity annotations for my POJO classes.
...
1
vote
2answers
80 views
Can't I use @Value annotation with @Transient annotation?
I have a class to map a table for using hibernate. There are some variable I want to ignore for mapping to use as constant. And I want to load constant value from properties so I code it like this:
...
1
vote
2answers
590 views
JVM crashing when using any other Hibernate inheritance strategy besides SINGLE_TABLE
Ok, this is probably a longshot but here goes.
In Java (JRE 1.6.0_26-b03) I have two classes, SuperControl and its subclass SubControl. They both need to be persistent objects and I'm using Hibernate ...
1
vote
1answer
190 views
Visual Designer Tool for Hibernate Annotations
I started using Hibernate only recently. While I was playing with it, I experienced the problem , which I assume, is faced by every Hibernate Beginner.
I want a good visual designer Tool that can ...
1
vote
1answer
205 views
hibernate @ManyToOne fails to insert properply, because FK id not yet created
In the class Order I have a property:
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "order")
private Set<OrderLine> orderLines;
In the class OrderLine I have a ...
1
vote
1answer
267 views
Invalid object name 'ACCOUNT_orders'? Spring-MVC Hibernate with annotation question
I am new to Hibernate. I have Order and Account table in DB,
CREATE TABLE [dbo].[ORDERS](
[PRICE] [decimal](12, 2) NULL,
[ORDERID] [int] IDENTITY(0,1) NOT NULL,
[ACCOUNT_ACCOUNTID] [int] ...
1
vote
3answers
122 views
Hibernate Mapping Help!
I am quite new to Hibernate so I am not entirely sure if what I want to do is even possible (or the right thing to do) so if it is not, feel free to suggest other ways of achieving what I am looking ...
1
vote
2answers
82 views
How can I troubleshoot JPA join annotation problems?
The JPA join annotations are essential to using JPA but I find it challenging to find good, in-depth documentation about them.
My typical experience is I think something is working and then 3 days ...
1
vote
1answer
577 views
liquibase and hibernate annotations
this question is based on two threads that have been posted before.
Hibernate using JPA (annotated Entities) and liquibase
Liquibase diffChangeLog against a Hibernate mapping definition
my ...
1
vote
2answers
182 views
Hibernate using transaction annotation requires a flush after most if not all queries
So we're using an annotation to specify that a class requires a transaction like this:
@TransactionAttribute (TransactionAttributeType.REQUIRED)
public class Foo() {
...
}
In the bits of code in ...
1
vote
1answer
585 views
hibernate: ternary association mapping
Technology Description:
Hibernate annotation- 3.4.0.GA
java 1.5
table : users_roles_branches
columns : user_id, role_id, branch_id
A user is assigned different roles for different branches of a ...
1
vote
4answers
3k views
Java Hibernate Mapping Exception! (Could not determine type for: java.util.Map)
I have made a class with name of Movie with folowing fields:
@Id
@GeneratedValue
private Long id;
private String name;
@ElementCollection(targetClass = String.class)
private Map<String, ...
1
vote
0answers
314 views
hibernate @CollectionOfElements not persisted
HI,
I am using Hibernate with plenty of satisfaction so far. Lately it seems that I am not able to persist a @CollectionOfElements using annotation.
I am saving an object of class Estate which ...
1
vote
2answers
2k views
a different object with the same identifier value was already associated with the session error on save
I've been having problems with my hibernate annotations. I have a bidirectional relationship between 2 classes. Here's the mapping(thanks to axtavt):
@Entity
public class Receipt implements ...
1
vote
1answer
802 views
Return Map<Key, Value> with condition in Hibernate Annotation
I have a table with the following columns:
id, target (string), audience_group_id, rating (Integer), job_id
target column is a string representation of one of the following values:
predicted, ...
1
vote
3answers
310 views
Hibernate: Add a property in my class that is not mapped to a db-table
I have a table tbl_sky that has 2 properties name and model and I would use Hibernate annotation like;
@Entity
@Table(name="tbl_sky")
public class Sky implements Serializable {
private String ...
1
vote
1answer
565 views
map default column value with annotations
@Entity
@Table(name = "J_CNTRY")
public class CountryEntity {
@Id
@GeneratedValue(strategy = GenerationType.TABLE, generator = "myTableGenerator")
@TableGenerator(name = ...
1
vote
1answer
2k views
Why does Hibernate throw exception “java.lang.NoSuchMethodError: javax.persistence.UniqueConstraint.name()”?
Why does the UniqueConstraint annotation in the following Hibernate mapping declaration cause the exception java.lang.NoSuchMethodError: javax.persistence.UniqueConstraint.name() (see below for stack ...