2
votes
1answer
24 views

What is the name (or keywords) of methodology/technique to hold ids instead of related entities in entity?

Entity hold data which mapped to data from persistent storage. Usually this is DB. You can hold ids: class Book { private String title; public String getTitleId() { return title; } ...
0
votes
1answer
26 views

Use of Cascade in ManyToOne relation

Is it appropriate to use Cascade in both sides of a ManyToOne association in Hibernate Entities? To make my question more concrete, let 's assume that someone has the following related Entities: ...
1
vote
1answer
30 views

EnityManager query returns a strange unaccessible object

I have 2 entities connected through join annotations and everything works fine except for the query result which is strange. So I have this class say Cat and the other class say Home. So if I execute ...
0
votes
2answers
28 views

Entity hibernate implement serialized

I used to read a coding best practice is the entity of hibernate should not implement java.io.Serializable . My idea is just for better performance, to avoid compiler processing something for ...
0
votes
1answer
87 views
+50

EntityManager remove() call not updating database

I have a basic Java project setup using JPA. I have classes which are annotated properly and can insert data into my PostgreSQL database without any trouble. My question... and I may find that I ...
0
votes
1answer
27 views

Error on defining association with Hibernate

I am trying to create two associated tables in a PostgreSQL database using Hibernate. The Entities I have written are: @Entity @Table(name="EMPLOYEE") public class Employee implements Serializable { ...
1
vote
1answer
33 views

Hibernate does not find Entity

I am trying to create two simple Tables with a couple of records in a Postgresql database running a simple Java application and using Hibernate. I have created the entities Employee and Department as ...
1
vote
0answers
74 views

converting hashmap to hashset retaining the constraints

I had a entity class which was using hashmap to one of the attribute with one to many mapping. Now I have converted that map to separate entity class with foreign key constraint. Before class ABC{ ...
2
votes
3answers
83 views

persistence - Entity classes vs Hibernate framework vs other

I'm making a web app. It gets data from a SQL db. I had some code in jsp to query the db however, that code would be available to the user - via source code - not a good practice, right? So, I ...
2
votes
0answers
52 views

Query Cache Hibernate loading entities

Can any one help me resolving this question. I am using Infinispan as second level cache and Hibernate as ORM. I have turned on both enityt and query cache. I have two queries, for example Q1 is ...
0
votes
1answer
259 views

Hibernate - update entity on pre-insert/pre-update

I want to set timestamp of last object modify/create, so I though to create an pre-insert and pre-create listeners and link them to Hibernate: public class UpdateInsertListener implements ...
0
votes
1answer
385 views

EntityManager ThreadLocal pattern with JPA in JSE

I'm developing a simple "Book Store" project using Struts 1.3 + JPA (with Hibernate as persistence provider). I cannot switch to Spring or any other more sophisticated development environment (e.g., ...
0
votes
1answer
81 views

JPA not generating tables from entities

Here is some entity: @Entity public class Forest { @Id @GeneratedValue(strategy = GenerationType.AUTO) private long id; public Forest() { } public long getId() { ...
1
vote
3answers
65 views

Creating other public methods in entity class

I have an Entity class @Entity @Table(name = "rule") public class Rule implements Cloneable, Serializable, IPojoGenEntity, IRule, SequencedEntity { private String name; private ...
0
votes
1answer
146 views

Entity Objects vs Value Objects - Hibernate and Spring

Okay. I am getting a little confused here... Lets say I have a class called User. class User { // all variables // all getters and setters } Now, I use JSR 303 validation and put ...
2
votes
1answer
169 views

Exclude Loading of specific properties in Hibernate object

I have a entity class class B{ @ManyToOne(fetch = FetchType.EAGER) private A a; @ManyToOne(fetch = FetchType.LAZY) private C c; } In certain scenarios, I don't want to load object ...
0
votes
3answers
96 views

Search for entities where list contains any value from list in java hibernate

Lets imagine that I have some Product entity with java.List of tags, as blelow: @Entity public class Product impements Serializable{ ... private List<String> tags; } and I have user, ...
0
votes
1answer
40 views

Hibernate query EASY answer

I'm working on hibernate. I have an @Entity like this: Entity A: int category; //1 2 or 3 List<B> B_list; Entity B: String word; Now what i want to do is given a category of A and a ...
0
votes
0answers
35 views

Joining tables in Hibenate

I have a requirement where I have to fetch data from 2 tables. Table1 structure profileId PRIMARY KEY name address Table2 structure profileid key PRIMARY KEY(`profileId`, `key`) There will be ...
0
votes
1answer
732 views

HQL query for searching (one to many relation)

I have two entities, Book and Author. @Entity @Table(name="book") class Book { private int id; private Map<Integer, Author> authors = new HashMap<Integer, Author>(); @Id ...
0
votes
3answers
61 views

How should i solve Exception “Unable to resolve path” while executing a query in hibernate?

I am trying to test a simple application that uses hibernate and annotations.I have the follwing database tables with the following foreign key constraints. create table user_info ( mobile_number ...
0
votes
0answers
127 views

Making an un deletable and read-only entity with Hibernate

I have a table called UserRights containing the list of possible rights that a user can get through a ManyToMany association. Hence I want this table to be read-only / unmutable. So no deletion and no ...
2
votes
1answer
740 views

Hibernate mapping class entity-name

Is it possible to use the entity-name attribute in class to set an entity and to reference it? I want to do this because I want to map to multiple tables with the same entity class. Table 1 and ...
0
votes
0answers
189 views

org.hibernate.AnnotationException: Cannot find the expected secondary table, while instatiating an entity in Hibernate

I have some hierarchical tables in my Oracle database like, TRANSPORTER->ZONE->COUNTRY->STATE->CITY (from parent to child) and many others. Among them, the entity class of the COUNTRY table is as ...
0
votes
2answers
33 views

Hibernate: How to update on different ID

Question: How do I indicate in Hibernate that the [ref] is the true primary key but when updating the record I want it to apply .update or .saveOrUpdate on the [objectID]. Context: I have a scenario ...
1
vote
1answer
141 views

Hibernate Envers - Audited Entity can't recover ID from empty audited table relation

I need some help on Hibernate Envers. I have the following scenario: I have a Entity in Hibernate/JPA and this Entity has a normal configuration: package com.algar.fsw.siscos.model; /** * ...
0
votes
1answer
24 views

Can inherited entities have their own unique identifier?

Well a simple question: can the subclasses that inherit the parent class, not only have the ID of the parent class, but also have their own ID? Like for instance we have an entity class User and the ...
0
votes
1answer
86 views

Do entity classes always need IDs?

Well, I would like to know whether we always need to have an id field inside an entity class? I somewhat heard it's a bad practice to always have an id field in your entity class, because then it's ...
0
votes
0answers
70 views

How can I get Hibernate to throw a StaleStateException if a collection has changed in the DB

I am working with a legacy database. Consider these tables: Clients and ClientClasses. Basically, a Clients object has a list of ClientClasses plus several other properties. I want to use optimistic ...
0
votes
1answer
210 views

JPA entity manager isn't properly updating a field with a OneToMany relationship

I'm using Hibernate 4.1.0.Final and hibernate-jpa-2.0-api. I'm having a problem using an entity manager to update an entity with a OneToMany relationship. Here is the entity: @GenericGenerator(name ...
0
votes
0answers
153 views

error in integration of struts & hibernate

When i try to integrate struts2 & hibernate3.6, i got the below mentioned problems. Kindly solve the my problem, i used mysql database and tomcat server in this integeration. Please friends any ...
0
votes
1answer
850 views

Hibernate/Spring - AnnotationSessionFactoryBean - how to resolve duplicate import?

I'm having a problem in a Spring Configuration creating a bean which extends AnnotationSessionFactoryBean. Here's the definition of the class: public class ExtendedAnnotationSessionFactoryBean ...
1
vote
1answer
77 views

JPA/hibernate inheritance and runtime type of an entity that subclasses an abstract super class/entity

I would need some clarification about JPA/Hibernate inheritance. Say I have an abstract Fruit entity that is subclassed by two Apple and Orange entities. Furthermore, I have an instance of Orange in ...
2
votes
1answer
110 views

Get entity subclass without instanceOf

I have a scenario where I have a entity hierarchy structure implemented in hibernate. It is InheritanceType.JOINED Parent class: @Entity @Table(name = "LOY") ...
0
votes
0answers
117 views

Configuring “hibernate.hbm2ddl.auto” at entity level

I currently use the hibernate.hbm2ddl.auto property with a value of create. While this setting is very convenient for some entities, I also have an entity that is not going to change and that ...
1
vote
1answer
430 views

Preferred way to make JPA / Hibernate Entities Immutable / Thread-safe

I have a somewhat normalized database with entitity objects comprised of other entities, and I will be publishing the root entity on it's own and in collections in a java web application in both the ...
0
votes
1answer
104 views

Creating a table dynamicaly with hibernate

I am learning Hibernate ORM(v. 3 ) now and i've a got a question. A have an table called USERS, created with annotations : package com.hibernatedb.entities; import javax.persistence.*; @Entity ...
1
vote
1answer
185 views

PostgreSQL JPA cascade partially working

Again we probably have a very simple problem; our database look like: CREATE TABLE Question ( idQuestion SERIAL, questionContent VARCHAR, CONSTRAINT Question_idQuestion_PK PRIMARY KEY ...
0
votes
0answers
312 views

hibernate + JSF 2.0 - save failed: Unknown entity

I'm trying to send timesheet data to a database using hibernate and JSF 2.0 . I have reverse-engineered my database with DAOs to use in my beans, but I run into the following error when I try to ...
1
vote
1answer
1k views

JDBCExceptionReporter [ERROR] Field 'id' doesn't have a default value

After trying different suggested solutions I haven't managed to figure out this one. I'm using hibernate 3.6 and mysql 5.x and trying to persist my entity (I excluded the getters & setters): ...
0
votes
1answer
485 views

Dynamically adding entities to hibernate

How can we add more entities to hibernate? Mine is a standalone application built on spring and hibernate. I have the metadata about the class file of the new entities. How can I add them to ...
0
votes
0answers
145 views

Unknown entity in hibernate

I have this code: public ArrayList<RateNegotiationDTO>getInitialRateNegotiation(BidToolTradeLanes tradeLane){ SessionFactory sessionFactory=new ...
0
votes
3answers
75 views

hibernate - saving entity with an entity in it (that already exists in the db)

for simplicity, here is my simplified model: I got 2 entities: @entity public class Student { int id; School school ... } and the school is an entity as well @entity public class School { int id; ...
1
vote
1answer
178 views

How to revert changes to collection owned by entity in Hibernate?

This should be a trivially easy task, but I can't get it to work. I want to be able to revert changes to a lazy-loaded collection (let's call it kittens) hanging off the main entity (let's call it ...
1
vote
2answers
203 views

Two entity manager instances when making update in the first one the second one selects the old value

I'm using hibernate entity manager 3.4.0.GA and i have the flowing problem: I have two entity manager instances em1 and em2 and i have one entity. I update the the entity in em1 and then select it in ...
0
votes
1answer
92 views

why does referencing detached entity work ?jpa hibernate

Let assume that I have a relation Master Slave. In the database exists one row in the table Master with id=1. Why does this following code work: Slave slave = new Slave(); slave.setId(1L); ...
2
votes
1answer
244 views

Discriminator column mapped as entity Hibernate

In hibernate, is it possible to have discriminator as an entity? For example, if I have Department as the base class & AdminDepartment & ProcessingDepartment as subclasses. DepartmentType is ...
1
vote
1answer
89 views

Returning date as long in entity

Hey i need to return Date from table as a long (miliseconds). The column i need to access is on oracle db and is of Timestamp type (name ROW_TMSTP). What i have done is: @Column(name = "ROW_TMSTP") ...
1
vote
1answer
283 views

entity onetomany ..annotation exception

I have two classes mapped OneToMany, ManyToOne, and i get exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: entity_package.TicketEntity.ownerEntity ...
0
votes
1answer
89 views

Generate ID based on number of rows in table in Spring

I am developing a spring 3 MVC application. I am using hibernate as the ORM. While defining the model, i have an ID field. I want to auto generate it in such a way that its value is the current number ...

1 2 3