Posts by amorimramon • 11 points
2 posts
-
0
votes1
answer95
viewsA: Deploying non-JDBC-compliant driver class org.postgresql.Driver
Maybe the driver configured in jboss is not compatible. Check that the driver that is configured in the container(jboss) is the same as the one being used in netbeans.
-
1
votes6
answers2011
viewsA: Hibernate is not creating the tables
Good morning, add the following property to your persistence.xml: <property name="hibernate.hbm2ddl.auto" value="update"/> with update option it will always keep the database updated every…