plugin « HBM « JPA Q&A





1. How can I use *.hbm.xml files as input in hbmtemplate for Maven?    stackoverflow.com

In the Ant task of the Hibernate Tool hbmtemplate, it is possible to use *.hbm.xml files as input instead of reading table descriptions over JDBC. Is there a way to do the ...

2. How to get hibernate3-maven-plugin hbm2ddl to find JDBC driver?    stackoverflow.com

I have a Java project I am building with Maven. I am now trying to get the hibernate3-maven-plugin to run the hbm2ddl tool to generate a schema.sql file I can ...

3. How to keep hibernate3-maven-plugin HBM2DDL from printing to console    stackoverflow.com

I used the hibernate3-maven-plugin to automatically create a SQL script I can use to create a database schema in a new database. I do this via the hbm2ddl tool. ...

4. Stop Maven's hibernate3-maven-plugin from logging to console?    stackoverflow.com

I can control hibernate logging from within my application just fine, but during a system build, the hibernate3-maven-plugin runs hbm2ddl and this is spewing tons of useless INFO log messages to ...

5. How I can quote tables using hibernate3-maven-plugin hbm2ddl?    stackoverflow.com

I have a project I'm building with maven and I need to generate a schema using the hbm2ddl tool from hibernate3-maven-plugin. I need to create database with a table called Order ...

6. Support for @ElementCollection in hibernate tools hbm2ddl    stackoverflow.com

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 ...

7. Schema generation with Maven Hibernate3 plugin    stackoverflow.com

I'm trying to setup a simple hibernate + maven project. I'm following steps as mentioned in Chapter 2 of Java presistence with hibernate (only diff is I'm maven using ...

8. Exclude tables in hibernate3:hbm2ddl plugin    stackoverflow.com

I am using maven plugin hibernate3:hbm2ddl in my project to generate all the tables in database and is working fine. I am using annotations in my project. Now i want to ...

9. Maven with hibernate tools    stackoverflow.com

I am trying to generate my classes and the hibernate.cfg.xml with maven. Well i have classes in my project which depend on the generated java files so i will probably have to ...