Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] Problems with Eclipselink 2 (JPA 2.0) & WebLogic 10

I would like to be able to use JPA 2 features.  As long as I was on JPA 1.0 I was able to work with my application deployed as a WAR.  The whole reason for converting it to an EAR is to work around WebLogic.

Sri

-----Original Message-----
From: eclipselink-users-bounces@xxxxxxxxxxx [mailto:eclipselink-users-bounces@xxxxxxxxxxx] On Behalf Of Cronemberger, Constantino
Sent: Tuesday, November 30, 2010 12:13 PM
To: eclipselink-users@xxxxxxxxxxx
Subject: Re: [eclipselink-users] Problems with Eclipselink 2 (JPA 2.0) & WebLogic 10

Hi,



The first thing to define is:



Is JPA 1.0 interface enough for you or do you need 2.0?



In my env. I did not have the option to change anything in the Weblogic installation so I had to go for 1.0 interface.



It was quite simple:



1 - use eclipselink-2.1.0.jar (everything in one JAR) because this JAR has all 2.0 classes that are not in 1.0 (this is necessary to let the classes be loaded)

2 - remove javax.persistence 2.0 jar from your EAR

3 - configure weblogic-application.xml with: <prefer-application-packages><package-name>org.eclipse.persistence.*</package-name>

4 - make sure persistence.xml is 1.0 complient



It worked OK for me.



Regards,

   Constantino.






_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users




Back to the top