0
votes
3answers
46 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") ...
1
vote
1answer
33 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 ...
2
votes
2answers
77 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 ...
0
votes
0answers
28 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
20 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
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
1answer
26 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
67 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 ...
0
votes
2answers
47 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
157 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 , ...
3
votes
1answer
71 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
71 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
59 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 ...
2
votes
1answer
82 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
1answer
119 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 ...
1
vote
1answer
248 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
62 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
82 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 ...
0
votes
1answer
183 views

Many-to-One w/ Composite key- Foreign key must have same number of columns as he referenced PK

Problem Summary I am trying to map a many-to-one with a composite key. So far I haven't been able to locate another question that helps. I know how to map to a composite key with one-to-one, but it ...
0
votes
0answers
41 views

amount field with decimals in hibernate

I have a SQl with an amount field like, to_char(ERR_VW.GROSS_AMT,'$999,999,999.99') GROSS_AMT, But when I execute this thru hibenrate, i get the foll exception Wrapped exception: ...
0
votes
1answer
70 views

Create list table automatic using Hibernate

Is there any way to create single tale using hibernate. I have use hibernate.hbm2ddl.auto but it impacts to full aplication which I don't want. Table which I want to create is basicaly use to handle ...
0
votes
0answers
199 views

How to write query in hibernate(HQL) to perform 2 joins without mapping?

I want to convert the following query into HQL: SELECT C.ID, E.DESCRIPTION as STATUS, E1.DESCRIPTION as SUBJECT FROM CRED C join CODE_EVN E ON E.CODE = C.STATUS_CODE AND E.SUBCODE = ...
0
votes
1answer
241 views

JPA - Hibernate : Map several tables on one column of another

Conserider following table structure country ======= id code name_id label ====== id code label_value_id translations ============= id ref_id language value Now I need to find a JPA mapping to ...
0
votes
1answer
181 views

Hibernate save collection

I'm using Hibernate 4 (with Spring) to persist my object into database. I have some issue when I try save parent with a collection children. My Table: | A | => PK (Composite) [String + Integer] | ...
0
votes
1answer
100 views

Hibernate, saving a collection property in a single operation

I need a better understating of this behavior of hibernate, and wonder if I can get some light on the matter. There are two objects, Contact and Action with one to many relation, i.e. one Contact can ...
0
votes
1answer
84 views

Map a column in Hibernate without a property in the Java class

Is it possible to map a database column using Hiberanate, so I can use it in HQL queries, but not map it to an actual property in the mapped class? I don't need this attribute in my class and would ...
0
votes
4answers
97 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/ ...
1
vote
0answers
126 views

Join two table on part of composite key in hibernate mapping

I have two tables as follows: Table A: site [pk] group [pk] Table B: group [pk] method[pk] gate [pk] Composite key for A - [site-group]. Composite key for B - ...
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
414 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
1answer
409 views

Hibernate: composite-id with key-many-to-one generating java.lang.stackoverflow error

I've been trying to map the following tables into Hibernate with hbm files: CREATE TABLE additional_info ( info_id SMALLINT, book_id INT, desc VARCHAR(32) NULL, ...
2
votes
1answer
245 views

Hibernate/Oracle: How to make sequence execute within insert statement instead of two queries

I come from a jdbc background and I decided to teach myself to use hibernate. So I made a table with a sequence: CREATE TABLE TST_PERSON( ID NUMBER, NAME VARCHAR(30), SURNAME VARCHAR(30) ); CREATE ...
0
votes
0answers
220 views

Hibernate inserting NULL values for combiner foreign keys

I have the following table structures. Region table { `RegionId` int(11) NOT NULL AUTO_INCREMENT, `RegionName` varchar(45) DEFAULT NULL, PRIMARY KEY (`RegionId`) } Client table { `RegionId` int(11) ...
4
votes
1answer
123 views

Length of primary key for Long data type in Java (and Hibernate)?

log(2^32) / log(10) =~ 9.63295986126 log(10^0.63295986126) / log(2) =~ 2.10264714605 > 2 bit log(2^64) / log(10) =~ 19.2659197225 log(10^0.2659197225) / log(2) =~ 0.883366197155 < 2 bit As ...
6
votes
2answers
256 views

Hibernate insert query

During insertion in hibernate query i'm passing some fields as table class objects which i've mapped to corresponding tables, The query works fine but the query is becoming too large because each of ...
0
votes
3answers
127 views

Unknown column username in 'where clause'

I got this error when I try to select on table that one of its column is foreign key: select count(*) from cards where username = 'name'; I am doing it through java jdbc so I think something with ...
0
votes
2answers
82 views

what is use of DOCTYPE tag in hibernate mapping files?

I am new to hibernate and i am using it with java. I have made hibernate mapping file for my Entity and tested it on local machine and it worked fine. However when I was running on server I got error ...
1
vote
2answers
220 views

hibernate MappingException: Could not determine type for: java.util.Set

I'm new to Java and Hibernate (although I've familiar with the Entity Framework so understand a lot of the concepts) All I want to do is create a Table OrganisationNode which has the following ...
0
votes
2answers
69 views

Saving an object to table that has relationship with another table using hibernate

I have 2 tables. Student (id,name,class_id)<br> class(id,name) student relates to class table through class_id after using hibernate and generate into object, I'll have 2 objects Student { ...
1
vote
1answer
329 views

Hibernate: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session

I wonder why this exception happens although it's assured by Hibernate get/query methods to retrieve objects that are already available inside the Hibernate session in case those objects are required ...
1
vote
0answers
28 views

map hibernate object with liferay internal table - many to many relation

i would like to know - if possible - how can i map a hibernate object model to an internal liferay table 'user_'. My Hibernate Object model is: @Entity @Table(name = "imageviewer_crreviewprotocol") ...
0
votes
0answers
147 views

hibernate named query with object

I put this in my District.hbm.xml file <sql-query name="getCarsPerDistrict"> <return alias="district" class="java.lang.Object"/> <![CDATA[SELECT id, name, district_code, ...
0
votes
1answer
460 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
1answer
141 views

Convert classes relationships in Java into database schema

What is the best tool/framework to convert classes into database schema automatically without XML mapping files? My problem is this, I have around 20 classes with different relationships ...
1
vote
1answer
156 views

Pagination is not working when calling MySQL Stored Procedure using Hibernate

I have a MySQL Stored Procedure click here for stored procedure and calling the Procedure using Hibernate Hibernate Code: int ps=5; SQLQuery query=session2.createSQLQuery("CALL ...
1
vote
1answer
314 views

Hibernate Returning two Pojo's and display the results on jsp using jstl

I have my pojo classes Master: public class Master extends RecordSet{ private String empcode; private String empname; private String dept; public String getEmpcode() { return empcode; } public ...
0
votes
1answer
113 views

Hibernate-NamedSqlQuery UserType as a ReturnType

I've got a mapped class in Hibernate that contains a named sql-query that calculates the minimum of an integer for some search-parameters. The actual query is quite complex (so I can neither write it ...
0
votes
2answers
151 views

How to write jstl code for Hibernate returning two Entities

I have a Hibernate Code like below which returns single Entity class: SQLQuery query = session.createSQLQuery("select * from Employee"); query.addEntity(Employee.class); ...

1 2 3 4 5 8