Tagged Questions

4
votes
4answers
3k views

Schema export with hibernate annotations

I'm using hibernate annotations and i want to export my database schema. Similar to the schemaexporttask with hbm xml files.
2
votes
0answers
1k views

How to find a JNDI resource inside the hibernatetool Ant task

I want to generate my database schema with Ant. I am using hbm2ddl task. I am using Hibernate with JNDI. My hibernate.cfg.xml looks like: <!DOCTYPE hibernate-configuration PUBLIC ...
1
vote
1answer
664 views

Passing parameter to hbm2ddl

I have parametrized persistence.xml. I am trying to generate ddl schema using hbm2ddl. How can i pass parameters to this tool ? My persistence.xml looks like <property ...
1
vote
3answers
1k views

Is there a way to get Hibernate's hbm2ddl Ant task to exclude specific tables?

I use Hibernate to generate my database automatically for testing, and I have some tables in my schema that contain static data that takes a very long time to import. In the past, I've used the ...
0
votes
1answer
534 views

Hibernate hbm2ddl ant file paths

I am having troubles with generating database schema with Hibernate Tools. This is my ant file <project name="Schema generator for MySQL database" basedir="."> <description> This ...
0
votes
2answers
252 views

How can I turn off the majority of hbm2ddl's output in the console in Ant?

By default, hbm2ddl spits a ton of output to the console when executing the ant task. I'd like to turn this completely off and simply look at the schema file if something has gone wrong. Anyone know ...