Hibernate Tools is a toolset for Hibernate3implemented as an integrated suite of Eclipse plugins, together with a unified Ant task for integration into the build cycle. Hibernate Tools is a core component of JBoss Tools and hence also part of JBoss Developer Studio.

learn more… | top users | synonyms

0
votes
1answer
40 views

Eclipse,Hibernate tools, Is there any way to preview the sql equivalent query for criteria editor

I am using Hibernate tools 3.3 in Eclipse Indigo. Is there any way to view the Sql equivalent query for the criteria that I created? There is one Hibernate Dynamic SQL View which shows Sql preview ...
0
votes
1answer
31 views

Hibernate Tools in Eclipse: Change in column values does not reflecting in the query result

I am using Eclipse indigo and hibernate tools 3.3 for testing my hql queries. I have configured hibernate tools correctly. But when I am querying to db after changing the values in a column, the old ...
0
votes
0answers
26 views

HIbernate Reverse Engineering - adding extra annotations and then generating domain classes again

I have reverse engineered a database using Hibernate tools into a package com.mycompany.myapp.domain. The generated domain objects are using annotation @Entity etc. I now want to add additional ...
-1
votes
1answer
42 views

Generate JSF2 CRUD's - Can I create the bean and xhtml automatically for any entity?

I'm looking for any kind of software which allows me to generate, in an automatically way, the MVC files (a bean and a xhtml view) of any CRUD of any entity using Java Server Faces 2 and Richfaces 4 ...
1
vote
1answer
32 views

Avoid generating header comments with Hibernate generation tools

When generating DTO objects, hibernate tools generate comments in the header: // Generated 22 avr. 2013 20:29:27 by Hibernate Tools 3.4.0.CR1 Every generation the comments change (as they contains ...
0
votes
2answers
115 views

How to configure Hibernate when you are using a Spring Session Factory

I am trying to setup Hibernate Tools in eclipse. The trouble is that it can't find any mapping files. I have created a console configuration that points to my environment.properties file and ...
1
vote
1answer
147 views

HibernateTemplate Update Query

How to use hql update query using hibernate template thi is the hql statement "update Login set empSmartId = 48750005" +" where empPassword = 6328ef1675ddb7106eba8dc2661961d7" using ...
0
votes
0answers
50 views

Hibernate prespective doesn't appear in eclipse after installing Hibernate Tools

Good Morning, i have a problem in installing Hibernate Tools with Eclipse Juno, i installed the plugin from http://download.jboss.org/jbosstools/updates/stable/juno/ and after installation completes ...
0
votes
0answers
132 views

Can hibernate generate DDL from existing database schema?

I can use hibernate tools to generate mapping files and annotated java classes by querying the schema of an existing database (using hbm2hbmxml and hbm2java goals respectively). I am wondering if I ...
0
votes
0answers
9 views

Cannot control BLOB length for DB2 dialect using hibernate [duplicate]

I'm trying to control the length of a BLOB column using the DB2 schema. My final goal is to have hibernatetool generate the SQL file for a 10M long BLOB column, and given the files pasted down here I ...
0
votes
1answer
258 views

Hibernate tools giving error in Eclipse STS while connecting to MySQL database

I am using Eclipse STS 3.1.0 with Hibernate Tools 3.6.0. I am trying to connect to MySQL 5.5 database to generate my DAO classes. I am using MySQL driver mysql-connector-java-5.1.21.jar While setting ...
0
votes
0answers
146 views

Forcing optional=false for one-to-one relations with Hibernate reverse engineering

I'm using Hibernate reverse engineering to generate models from an Oracle Database. I don't use the eclipse plugin for Hibernate Tools, I run the hibernatetool task directly from ant. My build.xml ...
0
votes
0answers
50 views

hibernate3-maven-plugin showing “association errors” with my database

I have an existing Oracle 10g database used in production. I want to use the hibernate3-maven-plugin to fetch the schema of this database and generate the hibernate configuration file for my ...
0
votes
0answers
89 views

hibernate plugin in maven fails with association error

I'm trying to use maven to generate hibernate mapping files from an Oracle database. I am using hibernate3-maven-plugin and defining hbm2cfgxml and a hbm2hbmxml executions. When I run mvn ...
0
votes
0answers
81 views

Hibernate Tools Annotations Class

I've configure my Hibernate configuration to scan com.csteam.hibernate package and it work fine into application with Spring. I have used Spring annotation to mapping DataSource and table Entity; my ...
0
votes
0answers
21 views

How can I get the equivalent of this sql query while using hibernate DetachedCriteria?

How can I get the equivalent of this sql query while using hibernate DetachedCriteria? SELECT a.id FROM tableName AS a where a.active = false and a.version = (select MAX(b.version) from tableName AS ...
0
votes
0answers
487 views

Eclipse, junit, Hibernate An internal error occurred during: “Fetching children of Database”

When i'm trying to open hibernate perspective in Eclipse, i receive the above error, with the following stacktrace: java.lang.NoSuchMethodError: ...
3
votes
0answers
152 views

cannot generate hibernate.reveng.xml since the hibernate.connection.url is dynamic

I want to generate a hibernate.reveng.xml, but the "hibernate.connection.URL" in the hibernate.cfg.xml is a variable. jdbc:jtds:sqlserver://${database.server.name}:1433/XXX_DB so my question is ...
0
votes
1answer
42 views

Hibernate tools schemaexport without destroying current data

I'm doing an org.hibernate.tool.hbm2dll.SchemaExportTask as part of my compile/build script (it is ant with hibernate4 plugin, if it is important). Everything works wonderfully, except one: It ...
0
votes
3answers
273 views

NoClassDefFoundError: Could not initialize org.hibernate.tool.version

I'm trying to reverse engineer my Oracle Database with Hibernate Tools. However, when I try to do so, I get the following error: Received a NoClassDefFoundError, propably the console configuration ...
0
votes
3answers
385 views

Hibernate Tools 4.0.0 Detect many-to-many tables NOT working with MySQL Db

I am using Hibernate Tools to reverse engineer from a MySQL 5.5.27 using STS 2.9.2 and Hibernate Tools 4.0.0. It generates the POJO classes correctly, but is NOT picking up on the foreign key ...
2
votes
1answer
255 views

Hibernate Tools: Mappings and Annotations Fail

This is driving me crazy -- I'm pretty sure that Hibernate can determine mapping relationships between tables and thus reflect this in the POJO's generated. Except it's not. I am using MySQL with ...
1
vote
2answers
235 views

Hibernate tools Pojo Generation uses Set by default

Hibernate tools Pojo Generation uses java.util.Set by default. I want to generate POJO's with java.util.List instead of java.util.Set. Is there any way ?
0
votes
0answers
98 views

Add Hibernate Search Annotations with Hibernate tools

I'm using hibernate with annotations and hibernate tools with freemarker templates to automatically generate my orm dao classes. Now I'd like to implement hibernate search and therefor want to add ...
0
votes
0answers
56 views

Hibernate Ant Task not able to detect relationship

I have written the hibernate ant task, but it will not able to detect relationship (one to one or one to many) below is my ant task <!-- Hibernate Configuration Generation --> <target ...
3
votes
2answers
100 views

Hibernate generate random entity

It istrong texts posible to easy generate random entity using hibernate. For example I have got a simple entity User with 2 fields (name and surname) and I need to create 100 different entities. Is ...
2
votes
1answer
256 views

Add properties to getter-annotations in Freemarker reverse engineering templates?

I am trying to implement a FreeMarker custom reverse engineering template that automatically creates my Hibernate classes. In the build process, the template is used by hibernate-tools to generate ...
1
vote
1answer
198 views

Generating SQL DDL via Ant task in Hibernate 3.xx from Annotation Beans

My project setup is Hibernate 3.2.5,MySQL,Spring MVC, NetBeans Apache 7.xx I'm not getting any errors during build & run. Trying to generate SQL DDL scripts from annotation beans via Ant ...
0
votes
1answer
677 views

hibernatetools ant task - hbm2java - creates pojo without package statement

I'm exporting my mapping (hbm.xml) to pojo classes using ant task. It generates the POJO files in the mapped directory. But the Classes miss the Package statement. It simply creates all files in ...
0
votes
0answers
267 views

hibernate-tools hbm2ddl with gradle using classes as classpath Vs. jar as classpath

i've tried to generate the sql-ddl files of my entities via hbm2ddl through gradle. But when I use the compiled classes as classpath, I won't get any output. The generated file will always be empty. I ...
0
votes
1answer
221 views

Broken Hibernate Reverse Engineering Task, Obscure Error Message

We have a project which uses the standalone Hibernate Tools Ant task to build the hbm.xml files and POJOs. We only run the Ant task, which has its own build.xml file, when we need to add or update ...
3
votes
1answer
117 views

How to generate Hibernate field annotations?

How to configure Hibernate Tools in Eclipse Indigo to make annotations on fields instead on getters, when generating model based on existing database?
1
vote
1answer
307 views

How does one use Hibernate Tools to create tables from POJOs?

I am having some trouble searching for what I want to do. I am told that I can generate database tables using Hibernate that represent POJOs I created in Java. I must be missing something. Thank you ...
0
votes
2answers
3k views

org.hibernate.MappingException: entity class not found ( using qualified class name does not work)

I'm trying to run a simple SELECT FROM table ( I have also tried SELECT FROM package.Class )query but I keep getting this error : org.hibernate.MappingException: entity class not found: demo.Agents ...
0
votes
3answers
2k views

“'hibernate.dialect' must be set when no Connection available ” error despite having set the dialect

I have tried to run a hibernatetool Ant task but i've been unsuccesfull.Help. The jars are from my eclipse(3.7.2) hibernate tools plugin(3.4). I get a org.hibernate.HibernateException: ...
1
vote
1answer
2k views

I'm getting a noclassdeffounderror when trying to generate pojos or mapping with hibernate tools

I'm trying to generate pojos from my database but I get the following error(s) on eclipse indigo 3.7.2 with hibernate tools 3.4 plugin installed and hibernate 3.6.10 libraries (they seem to be all) in ...
0
votes
1answer
310 views

How to specify Library Provided at Runtime for Hibernate - Eclipse Dali JPA integration

I am trying to add Eclipse Dali JPA integration and to specify Hibernate as the JPA implementation. I have gathered different instructions but am struggling with specifying the user library when ...
0
votes
0answers
48 views

Hibernate Tools Eclipse plugin - is L2 cache being used?

I am using the JBoss Hibernate Tools plugin v3.4 in Eclipse Indigo. I am wondering if this plugin makes use of the L2 cache if it is configured in the hibernate.cfg.xml file used for the ...
1
vote
0answers
166 views

Hibernate Tools - Configure JNDI connection

I have installed Hibernate Tools Eclipse plug-in for Eclipse Indigo as I want to use the ability to test my HQL queries and try running them against my database and parse the results 'live'. In my ...
2
votes
2answers
2k views

Hibernate Tools: Error parsing JNDI name

We are trying to upgrade from Hibernate 3.6.7 to 4.1.2 and Hibernate Tools 3.2.0 to 3.5.0 We generate a DB creation script using Ant: <hibernatetool destdir="${target}"> ...
0
votes
1answer
85 views

What does the type option in the hibernate console wizard do?

Hibernate tools has a Hibernate Console wizard, and it has a type option with three possible values to select from: core, annotations and jpa. The official documentation says nothing about the ...
0
votes
1answer
437 views

Is it possible to use Hibernate Tools to generate POJOs with Hibernate Annotations without EJB?

I'm using hibernate tools under Eclipse Indigo. The Hibernate Console has Annotations option selected and hibernate version is 4.0. The hibernate tools wizard generates annotations only when I ...
1
vote
1answer
562 views

Can I reverse engineer a Postgresql db with Hibernate tools when a table has a UUID field?

I want to implement the following workflow: I design tables in postgresql 9, I use Hibernate Tools from Eclipse Indigo to generate POJOs for these tables, and I want Hibernate to use annotations. ...
0
votes
0answers
291 views

Generate Sequence's information in hibernate.reveng.xml

I'm using NetBeans "Hibernate Reverse Engineering Wizard" to generate hibernate.reveng.xml for a postgres DB. The table's primary key has a sequence. But, the wizard doesn't creates generator element, ...
1
vote
1answer
723 views

Installed Hibernate Tools plugin for Eclipse but no access to code generation feature

I'm using Eclipse Helios SR2 and I've just installed the Hibernate tools plugin (via the update site : http://download.jboss.org/jbosstools/updates/stable/helios/). I now have the wizards to create ...
0
votes
1answer
674 views

How to use hbm2ddl tool with Maven?

I would like to use the Hibernate3 plugin for Maven (developed by Codehaus) but according to the last release date (2009-01-21), it seems that it's not actively supported. I need to use the hbm2ddl ...
1
vote
1answer
489 views

JNDI Session Factory Error with Tomcat and Hibernate

I am building a web application framework by making use of Spring MVC, Hibernate, JBoss Tools and JSFs. I have managed to generate domain classes and DAO classes by making use of JBoss Tools, however, ...
0
votes
0answers
346 views

hibernate tools & hibernate template in DAO

I used Hibernate tools Eclipse plugin to generate the DAO implementation but it uses a "javax.persistence.EntityManager". I want to generate a DAO impl based on my mapped entity(using JPA annotations) ...
0
votes
1answer
3k views

Hibernate tool, reverse engineering

I have the following question about Hibernate tools and the configuration : I configure the hibernate to genrate JPA classes from the database with reverse engineering like this : hibernate.cfg.xml ...
1
vote
1answer
149 views

HQL class selection to DetachedCriteria (stackoverflow on too large ParameterList)

I have a serious problem: the ParameterList variable in my HQL has 10k+ elements, so Hibernate can't work with it (stackoverflow), now i'm trying to convert it into DetachedCriteria query, but it's ...

1 2