Tagged Questions

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

7
votes
2answers
8k views

How to configure hibernate-tools with maven to generate hibernate.cfg.xml, *.hbm.xml, POJOs and DAOs

can any one tell me how to force maven to precede mapping .hbm.xml files in the automatically generated hibernate.cfg.xml file with package path? My general idea is, I'd like to use hibernate-tools ...
4
votes
2answers
1k views

How to change name of Hibernate Tools reverse engineerd DAO class?

So im trying to use Hibernate Tools to reverse engineer my database and I am just getting into using Freemarker templates to weak the code it generates. The problem is I want to change the name of the ...
4
votes
3answers
11k views

How to configure Hibernate Tools HQL editor in Eclipse with a custom NamingStrategy

I've installed Hibernate Tools 3.2.4.GA in Eclipse Ganymede. The main driver for installing it was to be able to issue HQL queries interactively. I have configured all of our mapping files, ...
3
votes
1answer
205 views

How can I change the name of the self-referential many-to-many set using hibernate.reveng.xml?

I have a project using Hibernate on an Oracle database for which all entities are generated directly from Hibernate Tools under control of a hibernate.reveng.xml file. I have one class which has a ...
2
votes
1answer
56 views

Jboss doesn't map my auto-generate entity class with hibernate-tools

A strange thing happens when I put my auto-generated entity classes with hibernate-tools 3.2.4-GA into Jboss 6.1.0-Final. My persistence.xml has every class record with the correct entity: ...
2
votes
1answer
297 views

Hibernate: An AnnotationConfiguration instance is required to use … error

I build my HibernateUtil this way : public class HibernateUtil { private static final SessionFactory sessionFactory; static { try { // Create the ...
2
votes
1answer
842 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
2answers
2k views

How to configure hbm2java and hbm2dao to add packagename to generated classes

I'm trying to configure hbm2java with maven to generate POJO classes and DAO objects. One of the issues I'm dealing with is package names aren't generated. I'm using the following pom for that: ...
2
votes
1answer
2k views

Why do I get the error “Only antlib URIs can be located from the URI alone,not the URI” when trying to run hibernate tools in my build.xml

I'm trying to run hibernate tools in an ant build to generate ddl from my JPA annotations. Ant dies on the taskdef tag. I've tried with ant 1.7, 1.6.5, and 1.6 to no avail. I've tried both in ...
1
vote
0answers
22 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
vote
0answers
29 views

The hbm files generated by hibernate ant tools will miss the “DiscriminatorColumn”

I have defined a Article entity with hibernate annotations: @Entity @Table(name = "WZQ_ARTICLES") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name = "ARTICLE_TYPE", ...
1
vote
0answers
57 views

Error in reverse engineering from mysql to reveng.xml

I am trying to reverse engineer from my myql db to create the hibernate pojo classes and xml files. I a following this tutorial. I have a table called Headoffice and another called restaurants. Its ...
1
vote
2answers
230 views

use hibernate tool with spring project

i have existing project with datasource setup with spring.xml . the xml look like below <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> ...
1
vote
1answer
133 views

Metamodel classes generated by Hibernate tools

I'm using Hibernate Tools in Eclipse to reverse engineer the domain entities of an existing database. I more-or-less have everything generating how I want, although I still get a batch of "Metamodel" ...
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
0answers
606 views

How to get Hibernate Tools to generate POJOs with toString,equals and hashcode?

Hibernate Tools plugin (version 3.2.4) for eclipse Hi all, I'm using the plugin to reverse engineer my POJOs and DAOs from my DB-Schema and for some reason the toString,equals and hashcode methods ...
1
vote
1answer
482 views

Generating source with maven-hibernate3 plugin

Besides generating other source files, I want to generate one factory class for DAO classes - DAOFactory.java. I'm using hbmtemplate for that purpose - with my own *.ftl file. Problem is that (as I ...
1
vote
1answer
634 views

Support for @ElementCollection in hibernate tools hbm2ddl

I am trying to use the jpa2 feature @ElementCollection for a List of Strings in my Entity. I am using the hibernate3-maven-plugin to carry out the hbm2ddl task. However it seems the version of ...
1
vote
1answer
229 views

My hibernate mapping files exist, what are possible reasons that the mapping can't be found?

I dynamically generated my hbms. Now when I attempt to use the HQL Editor in Eclipse, I'm getting the following error: Hibernate Dynamic SQL Window: HQL was valid, but no SQL generated. Your ...
1
vote
2answers
363 views

Hibernate type used to map java.lang.Double

I am using "double" in Hibernate .hbm.xml files, and when I generate classes with Hibernate Tool I get class property which has primitive type double. I want this property to be java wrapper type ...
1
vote
1answer
108 views

Use SQL Information to Populate Schema Documentation and Code Comments Using Hibernate Tools?

I have set up Hibernate Tools from within Eclipse to autogenerate classes based on an existing DB. For each of the tables I have documented them and each of their columns within SQL Server. Is there ...
1
vote
4answers
434 views

Generate service layer with Hibernate

I generate .hbm.xml mapping files and .java files from the DB schema, with Hibernate Tools. My question is, that is there any option, to generate service classes also? These are the classes where I ...
1
vote
1answer
233 views

Where does Hibernate Tools store its database connection info in Eclipse?

I am using Hibernate Tools in Eclipse and having a problem. When we were initially trying to setup HT to be configured properly with our weird configuration, we made a custom DB connection (Right ...
1
vote
1answer
2k views

eclipse hibernate plugin

Can somebody guide me how to install Hibernate tools in Eclipse. I am using Eclipse 3.3 ( I can upgrade to 3.4). I can use Hibernate 3.0 or 2.0. I am not able to install the plugin. Its not getting ...
0
votes
0answers
19 views

hibernate tools toString and equals method generation

Below is my hibernate mapping file i want to generate toString and equals method using hibernate tool ant task. <class name="org.hibernate.db.Country" table="country" catalog="world"> ...
0
votes
1answer
23 views

How to work correctly with Hibernate and Hibernate tools for eclipse?

I just started experimenting with Hibernate. My current approach for working with Hibernate is as follows: Write cfg.xml and reveng.cfg.xml Use Hibernate tools for eclipse to generate POJO and ...
0
votes
2answers
31 views

using Hibernate-tools to update schema

I am currently using EclipseLink JPA and in my persistence.xml file i have this property set <property name="eclipselink.ddl-generation" value="drop-and-create-tables"/> The value field ...
0
votes
1answer
68 views

How use Hibernate Tools to execute JPQL Queries?

I need to make some tests with JPQL, so I'm trying do that with Hibernate Tools, but when I try open the session factory appears this : Could not locate TransactionManager as showed below: Here is ...
0
votes
0answers
59 views

How can I generate Jaxb-Annotated-Pojos from Hibernate Mapping file?

I want to automatically generate Jaxb-Annotated Pojos from a hibernate-mapping file. I now, that the hibernate-tool hbm2java just generates Pojos, also it can ejb3-Pojos, but I need Jaxb-Pojos. How ...
0
votes
2answers
120 views

eclipse plugin to create hibernate annotated entities?

i know that hibernate tools can create hibernate entities but the hibernate mapping will be in XML file, but i was wondering if there's a tool to create hibernate entities and the mapping will be with ...
0
votes
2answers
185 views

org.hibernate.AnnotationException: Collection has neither generic type or OneToMany.targetEntity()

I used Hibernate Tools to generate my Hibernate POJO mapping. Unfortunately the code generated by Hibernate tools seems not to work, I get the exception org.hibernate.AnnotationException: ...
0
votes
3answers
154 views

can hibernate tool generate jpa pojo?

May i know can the eclipse plugin -hibernate tool use to generate JPA entity @entity ? the java files that generated look like below and not JPA package com.test.only.model; // Generated Jul 19, ...
0
votes
0answers
56 views

create interface instead of abstract classes using hibernate tools

i have made a sample program in hibernate using reverse engineering in myeclipse 8.0. it creates some abstract classes. how i create interfaces instead of these abstract classes using hibernate ...
0
votes
2answers
516 views

Hibernate reverse engineering primary keys (EmbeddedId to IdClass)

I am using hbm2java (hibernate3-maven-plugin) in order to generate entities. How do I switch the auto generated @EmbeddedId to @IdClass? Thanks
0
votes
1answer
536 views

Problem with reverse engineering a many-to-one unidirectional association with hibernate tools

I'm using Hibernate tools 3.40 in Eclipse (Helios). I'm trying to generate POJOs from my DB (MSSQL 2008) with EJB3 style (i.e. JPA2.0 annotations). Let's say I have two tables A and B where there is ...
0
votes
0answers
117 views

Error with hbm2doc while building with ant

I'm getting a very strange error while trying to build a project through ant. The message I get is: [hibernatetool] 01:02:01,865 DEBUG TemplateProducer:40 - Writing doc/entities/index.ftl to ...
0
votes
1answer
315 views

Reverse engineering check constraints & indexes w/ Hibernate?

I've been tasked with reverse engineering Hibernate mappings from a large, legacy, sql server database. The database makes extensive use of check constraints (several per table) and indexes, and ...
0
votes
1answer
128 views

Hibernate Tools Generate Classes aproach

I would like to know what is the best approach when it comes to update the generated pojo classes should i do it manually or with the hibernate tools, is there any way to tell the Hibernate tools to ...
0
votes
2answers
333 views

Hibernate Tools : how to generate base classes?

I recently installed Eclipse Helios and Hibernate Tools 3.4.0.Beta1. I've been trying to generate "base class" from mapping files but can't find out how to do. Let us say I have a mapping file called ...
0
votes
2answers
973 views

@SequenceGenerator - allocationSize, reverse engineering with Eclipse Hibernate Tools

I use the Eclipse Hibernate Tools to create domain classes with JPA annotations from my Oracle database. To control sequence generation I have added the following entry to the hibernate.reveng.xml: ...
0
votes
2answers
7k views

what is the hibernate tools plugin for eclipse update site url?

Or perhaps this is a manual install only deal.