Hibernate uses mapping metadata to find out how to load and store objects of the persistent class. The Hibernate mapping could be specified using configuration files or annotations.
0
votes
1answer
13 views
hibernate mapping confusion
Could someone explain me why this doesn't work? I want to have a table that contains informations about two users who played with each other. This doesn't work.
Public class History implements ...
0
votes
3answers
50 views
Hibernate, error org.hibernate.util.JDBCExceptionReporter Field 'Variable_ID' doesn't have a default value
I have problem with insert data from one side relationships to other tables and to other side of relationships at the same time
I have:
Table User with User Entity
@Entity
@Column(name="USER")
...
2
votes
1answer
23 views
Hibernate/JPA 2.0 - Table per Class and @EmbeddedId Inheritance
Aware as I am that @Embeddable components inheritance in Hibernate is not supported, I'm trying to find the best strategy to deal with my very custom entity mapping.
The story is as follows:
I have ...
0
votes
0answers
19 views
java.lang.NullPointerException at org.hibernate.tuple.entity.AbstractEntityTuplizer.getPropertyValue(AbstractEntityTuplizer.java:521)
I am new to hibernate, I just had some doubts and clarified in this website (One to many relationship and Other object relation). For the same application i am facing different issue. the exception ...
0
votes
0answers
13 views
Fetch parent object using child in hibernate
I have an issue with hibernate mapping to retrieve parent using a child object. Below are the details -
TABLE_A
ID VAL
1 A
2 B
3 C
4 D
...
0
votes
2answers
41 views
Loading data from a table in a Map as Column Name Vs Value using Hibernate
I have been using Hibernate for a while and this time I am trying to do something uncoventional here. Not even sure of its possible.
What I want to do is to load data from a Single table, where in ...
0
votes
0answers
15 views
Mapping one-to-many with several foreign keys
I have the following entities:
@Entity
@Table(name = "ITEM_WEIGHTS", uniqueConstraints = {})
public class ItemWeight {
private ItemWeightId id;
@Column(name = "PERCENTAGE", unique = false, nullable ...
0
votes
0answers
16 views
Hyperjaxb/JPA : Many to Many relationship
I am new to hyperjaxb. I want to implement many-to-many relationship between 2 entities, Customer and User. My xsd looks like
<xsd:complexType name="Customer">
...
0
votes
2answers
78 views
UnsupportedOperationException: The application must supply JDBC connections
If I dont set anything programmatically and just call Configuration configuration = new Configuration().configure(); and use the hibernate.properties (as below) everything works just great. As soon as ...
0
votes
0answers
22 views
Create table JPA hibernate Glassfish V3… impossible
I try to developp a web application with primefaces, Glassfish v3, hibernate, JPA, Mysql and I find problem to create by JPA the table. The log server is next
...
0
votes
1answer
35 views
Error while creating SessionFactory object form hibernate.cfg.xml
i am creating a HibernateUtil.java class to return SessionFactory Object. but it's giving Error "The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class". my ...
0
votes
1answer
42 views
Hibernate 4.2 exception: Element type “hibernate-mapping” must be declared
I have been struggling to fix this error from long time Kindly help me in this.
I am getting ERROR: HHH000196: Error parsing XML (2) : Element type "hibernate-mapping" must be declared.
Please help ...
2
votes
2answers
80 views
Column cannot be null could not insert
Hello dear developers.
I'm going to ask you a question which I think hard to solve for me just because I don't know the basic why answer,
what I mean?? Let's see. The assosiasions in jboss ...
-1
votes
0answers
10 views
giving exception when sqlserver2005 hibernate connection is deploying on jboss4
write now i am working on project ....which is in java 6 and running on jboss4 and mysql as a data base ...but now i have to o use sqlserver 2005 as a data base .
when i changed the standalone ...
0
votes
0answers
17 views
Hibernate Criteria.LEFT_JOIN is not behaving properly. Neither Inner Join behaves properly(Not applying Restriction.in)
I have 2 simple models:
class Parent{
Long id;
String name;
Set<Chiild> children;
..... getter and setter....
}
class Child{
String name;
Long parentId; // forign key
}
I have ...
0
votes
0answers
29 views
why generationtype.sequence in mysql doesn't work?
i am developing an application using hibernate 4.1, zk 6.5 and mySql 9.3, I tried using generationtype.sequence in my code but unfortunately it returned an error, after doing some research on the ...
0
votes
1answer
21 views
Ignore some Entities while generating creation scripts
Suppose we have a bunch of Entity classes that have mappings between eachoter:
@Entity
@Table(name = "legacy")
public class Legacy {
// Mappings to a bunch of other different Entities
}
@Entity
...
0
votes
0answers
15 views
Hibernate mapping works for Tomcat but throws mapping erros running in Weblogic
I need to adapt my application to run in Weblogic 10.3.6 but I'm getting this error above:
... Servlet failed with Exception
org.hibernate.MappingException: property mapping has wrong number of ...
0
votes
1answer
28 views
Mapping a dictionary to a child table in NHibernate using an HBM file
I have a table structure that looks similar to this, simplified for brevity
CREATE TABLE Parent (
ParentId NUMBER NOT NULL,
CONSTRAINT ParentId_PK PRIMARY KEY ParentId
);
CREATE TABLE Attribute ...
0
votes
0answers
39 views
Hibernate mapping and assosiations for 4 tables confused
I have these tables:
This table called INSTITUTION:
Table INSTITUTION
ID(PK)
NAME_INSTITUTION
VERSION
The other table name is TYPE_INSTITUTION:
Table Type_Institution
TYPE_ID (PK)
...
0
votes
0answers
21 views
child tables are not getting updated when there is no change in parent table in hibernate
I have following mapping
<class name="Entity" table="ENTITY">
<id name="id" column="entity_id" type="long">
<generator ...
0
votes
1answer
75 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 ...
0
votes
0answers
25 views
Hibernate Pass parameter in Custom SQL for loading a collection
<hibernate-mapping package="com.test.info">
<class name="LevelInfo">
<composite-id>
<key-property column="ID" name="id"/>
...
0
votes
1answer
28 views
Hibernate mapping when cfg file and entity file are in different folders
I've got project with this structure:
When I'm trying to access dtb via hibernate, I get this exception:
Initial SessionFactory creation failed.org.hibernate.MappingException: entity class not ...
0
votes
0answers
54 views
Unexpected jdoDetachedState column when using hibernate in gwt project
I think it's a simple question for professionals but I am confused.
I'm trying to save simple model class Person
import java.io.Serializable;
import javax.persistence.Entity;
import ...
0
votes
1answer
74 views
Hibernate HashMap mapping
I am new to hibernate and I need to map an existing class structure to the database.
Right now I have a Player, Arsenal and Weapon class. Every Player has his own (one) Arsenal - no problem. In the ...
1
vote
1answer
55 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
2answers
48 views
Cannot delete child in one-to-many relationship
When I put inverse=true into set, nothing gets deleted. When I don't, and I remove MealIngredient from set, then Hibernate tries to set null, it fails and exception is thrown:
[SQLITE_CONSTRAINT] ...
1
vote
2answers
172 views
java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup)
I have a problem in using of my own Database server with Google web application.
Am using eclips (java EE IDE), installed all google plugins init, and develop a sample google web aplication , ...
0
votes
0answers
36 views
Jasypt with Hibernate and subclass
I have a class Y (field m,n,o) with two subclasses A and B. Is there a way to have jasypt encrypt the "m" field only for subclass A (this field is varchar(255) in db) but not for B? or do I have to ...
3
votes
1answer
74 views
could not initialize class com.mysql.jdbc.driver Caused by: java.security.AccessControlException: access denied
Am new to hibernate, I created project(Google web application project) with the help of eclips ,
This is my hibernate config file ..
...
0
votes
1answer
72 views
Lazy loading and Fetch strategies
I am using Hibernate 3.6
User is an entity class
Contact is an entity class
User has a Set<Contact>
The relationship is uni-directional and mapped as one-to-many.
I have tried out the ...
0
votes
0answers
61 views
For one-to-many relation hibernate not update the foreign key
I have to tables nodes and holidays, Nodes table have a set of holidays so there is one-to-many relation between them. Below is the code snippet.
//Mapping in nodes entity
...
0
votes
1answer
112 views
hibernate JPA composite foreign key issue on read
I am using Hibernate JPA, EnterpriseDB(PostgresPlus Advanced Server 9.2.1.3) and Jboss 7.1.1 Final and receiving an exception while reading an entity with composite primary key and (one-to-one) ...
0
votes
1answer
13 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 ...
0
votes
0answers
32 views
Hibernate reverse lookup when no foreign key available
I've looked around and can't seem to find a solution to my issue so please read on to see what it is.
Any help much appreciated.
I've got table A which contains an 'Id' column (but table A has no ...
2
votes
0answers
97 views
Intellij ERROR: No suitable driver found for jdbc:mysql://127.0.0.1:3306/person
first of all I couldn't find an answer from related questions in this forum. I am new to Hibernate technology and I am trying to run a basic example from this page: ...
2
votes
1answer
86 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
16 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
0answers
58 views
Error while using hibernate one to many join columnattribute with composite key
My Classes:
1)UserEntity.java
package com.jsf.test.business;
import java.io.Serializable;
import java.util.Collection;
import javax.persistence.AttributeOverride;
import ...
1
vote
1answer
97 views
java.sql.SQLException: Parameter index out of range (3 > number of parameters, which is 2)
I have a table "AuthorFollow" having composite key of 'authorId' and 'userId' which are primary keys in "AuthorInfo" & "UserInfo" table respectively.
I am trying to save object of "AuthorFollow" ...
0
votes
1answer
46 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
122 views
Fetch data from table using hibernate with fetch=FetchType.LAZY
I'm trying to get all user's emails from table.
Entity user:
@Entity
@Table(name = "tbl_User")
public class User {
@Expose
@Id
@GeneratedValue
...
0
votes
0answers
16 views
Override ManyToOne in subclasses
Is it possible to override a @ManyToOne relationship from the base class with a more concrete class?
For example, I can have:
public abstract class Project
{
//....
}
public class ...
0
votes
1answer
56 views
Hibernate mappings not found when deployed to Oracle app server?
I'm having an issue with Hibernate resources not being found when deployed within an jar file on Oracle application server.
I have some hibernate mapping files defined in LocalSessionFactoryBean as ...
1
vote
1answer
275 views
org.hibernate.HibernateException: Unable to instantiate default tuplizer [org.hibernate.tuple.entity.PojoEntityTuplizer]
I am developing a web application using Hibernate framework. I got this error when trying to run webapp.
Error Console:
Exception caught in Create Account Dataorg.hibernate.HibernateException: ...
0
votes
1answer
31 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
63 views
Hibernate IN clause showing error
I have to add a string array to the IN clause.
My hibernate query looks like this,
Query q =
session.createQuery("from CsePrcsngGroup where CSE_SID=? and ...
0
votes
0answers
38 views
Representing a bidirectional OneToMany association when joined-subclass is used
How to represent a bidirectional One-To-Many association in XML when joined-subclass is used?
My two classes:
public class A {
private Long id;
private Set<B> bs = new ...
0
votes
1answer
83 views
Hibernate many-to-many data retrival
I have two objects User and Contact, with many to many relation, and I am using an intermediate table for this relation USER_CONTACT
Saving the data in this association is fine, but the retrieval is ...




