Java – exceptions to runtime optimization using openjpa MySQL
There must be many questions about this question. I have read some, but the answer is still not found I'm new to JPA. I just want to test a simple application and see if I can configure it correctly It's a stand - alone application, which means it won't run with a web server or anything The entity class looks like:
@Entity public class Person{ @Id private String userID = null; @Transient private UserState userState = null; private String email = null; private String name = null; public Person(){ userID = null; email = null; name = null; userState = null; } public String getUserID() { return userID; } public void setUserID(String userID) { this.userID = userID; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getName() { return name; } public void setName(String name) { this.name = name; } public UserState getUserState() { return userState; } public void setUserState(UserState userState) { this.userState = userState; } }
major:
public class PersistenceTest { public static void main(String[] args) { System.out.println("creating person"); Person p = new Person(); p.setUserID("GregR"); p.setEmail("Gregory@company.de"); p.setUserState(UserState.ACTIVE); System.out.println("done creating person GregR"); EntityManagerFactory factory = Persistence.createEntityManagerFactory(PersonService.PERSISTENCE_UNIT_NAME); System.out.println("factory initialized"); EntityManager manager = factory.createEntityManager(); System.out.println("EntityManager initialized"); PersonService service = new PersonService(manager); System.out.println("service initialized"); System.out.println("Beginning transaction"); manager.getTransaction().begin(); System.out.println("Transaction begun"); System.out.println("attempting to persist person"); service.persistEntity(p); manager.getTransaction().commit(); System.out.println("person persisted"); System.out.println("beginning cleanup"); manager.close(); factory.close(); System.out.println("Cleanup has completed"); } }
to configure:
<?xml version="1.0"?> <persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0"> <persistence-unit name="PersonService" transaction-type="RESOURCE_LOCAL"> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider> <class>de.hol.persistable.entities.Person</class> <properties> <property name="javax.persistence.jdbc.driver" value="com.MysqL.jdbc.Driver"/> <property name="javax.persistence.jdbc.url" value="jdbc:MysqL://localhost:3306/ConnectionWikisDB"/> <property name="javax.persistence.jdbc.user" value="GregR"/> <property name="javax.persistence.jdbc.password" value="myPassword"/> </properties> </persistence-unit> </persistence>
Console printout:
creating person done creating person GReeder factory initialized 47 PersonService INFO [main] openjpa.Runtime - Starting OpenJPA 2.3.0 110 PersonService INFO [main] openjpa.jdbc.JDBC - Using dictionary class "org.apache.openjpa.jdbc.sql.MysqLDictionary". 306 PersonService INFO [main] openjpa.jdbc.JDBC - Connected to MysqL version 5.5 using JDBC driver MysqL-AB JDBC Driver version mysql-connector-java-5.0.8 ( Revision: ${svn.Revision} ). Exception in thread "main" <openjpa-2.3.0-r422266:1540826 nonfatal user error> org.apache.openjpa.persistence.ArgumentException: This configuration disallows runtime optimization,but the following listed types were not enhanced at build time or at class load time with a javaagent: " de.hol.persistable.entities.Person". at org.apache.openjpa.enhance.ManagedClassSubclasser.prepareUnenhancedClasses(ManagedClassSubclasser.java:115) at org.apache.openjpa.kernel.AbstractBrokerFactory.loadPersistentTypes(AbstractBrokerFactory.java:312) at org.apache.openjpa.kernel.AbstractBrokerFactory.initializeBroker(AbstractBrokerFactory.java:236) at org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:212) at org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:155) at org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:226) at org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:153) at org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:59) at de.hol.persistable.PersistenceTest.main(PersistenceTest.java:24)
My question, I guess the main question is, what did I do wrong I'm very new to this. I'm trying to make this stand-alone application work so that I can expand it for real world use 2. Do I lack persistence Other configurations than XML files? 3. What is the easiest way to resolve this error for stand-alone applications?
Thank you in advance!
Solution
I see you have a main class, so I assume you use it in the Java se environment The easiest way to make it work is to define - javaagent on the command line, as shown below:
java -jar myJAR.jar -javaagent:openjpa-all-2.3.0.jar
You can also find your application from eclipse: Run - > Run configurations - > in "Java applications" – > arguments - > VM arguments - > Add
-javaagent:/full/path/to/openjpa-all-2.3.0.jar