table « JBoss « JPA Q&A





1. Hibernate tries to create table that is nowhere defined? [jboss]    stackoverflow.com

My problem goes like this. I do a hard-deploy from maven to jboss(jee6->single war). Building goes fine, war gets created but something weird happens. I did a mistake of previously naming one entity ...

2. Hibernate JPA create table type=InnoDB Problem    stackoverflow.com

I have an EJB Project deployed on JBoss with some entity classes. As soon as I deploy the EJB Jboss gives me this exception:

create table service_db (id integer not null auto_increment, ipAddress ...

3. Hiber/JBoss: create tables    forum.hibernate.org

Configuration configure(org.w3c.dom.Document document) Use the mappings and properties specified in the given XML document. protected Configuration configure(org.dom4j.Document doc) Configuration configure(File configFile) Use the mappings and properties specified in the given application file. protected Configuration configure(InputStream stream, String resourceName) Use the mappings and properties specified in the given application resource. Configuration configure(String resource) Use the mappings and properties specified in the given ...

4. table creation by jboss    forum.hibernate.org

Hey, i search the whole day, but i still don't know what to do, that the tables i define in the hibernate class with xdoclet tags are automatically createt! i have my class: Code: /** * @author jm * @hibernate.class table="KVT" */ public class KeyValueTuple { private Long uniqueSequence; private String Tkey; ...

5. jboss & create tables    forum.hibernate.org

Hi there, i use hibernate in jboss. So far everthing is well but i cant create the table structure automatically. I create the jboss-service.xml with hibernate and add the hibernate.hbm2ddl.auto with value update by using a merge file. However hibernate does not create the table structure. What is wrong, can someone give me any hint? Thanks! Stefan