0
votes
1answer
74 views

slf4j don't work in JBOSS when using openJpa module

My EAR application runs fine when i don't use openJpa. Once i use open JPA i get the "SLF4J fail to load class blaaa ". How to configure the openJpa module to use the SL4J which i provide from pom.xml ...
0
votes
1answer
128 views

OPEN JPA find() could not retrieve the value of the entity from my Database

There is a weird scenario that I had encountered in my User log in program. Insert the record.. Userid password etc. Insert the record using merge(); Then close the IDE (Netbeans) Open IDE ...
0
votes
0answers
82 views

Inserting a records from a form twice causes the openjpa to EntityExistsException: Attempt to persist detached object

I have this insert record form using struts2. I uses OpenJPA to insert record to my Derby database. Insert a unique record to the forms then press the register botton. Insert Success. Insert another ...
0
votes
1answer
301 views

Maven Open JPA Plugin Enhance: Seems to be working but It did not enhance my entity

When I compiled my Maven Project it says that my entity is enhanced. However when I start a database connection through EntityManagerFactory, Error happend on the code here: em = ...
0
votes
1answer
314 views

OpenJPA, Tomcat 7, Eclipse & maven - enchance does not work

So I've decided to give OpenJPA a go and so far I no luck. I followed this as best I could: http://struberg.wordpress.com/2012/01/08/jpa-enhancement-done-right/ ...
2
votes
1answer
232 views

Passing the JDBC URL to openjpa-maven-plugin to refresh data in PostgreSQL

In pom.xml I have (taken from http://struberg.wordpress.com/2012/05/10/using-jpa-in-real-projects-part-1/): <properties> <openjpa.sql.action>refresh</openjpa.sql.action> ...