After researching for a day , finally figured out the way to run JPA 2 with Webphere 7 or below without requirement of installing Websphere JPA2 feature pack.
Websphere 7 by default supports JPA1 but creates class loader issue when trying to run JPA2 and as always Websphere does not have any clear documentation of working around this limitation.
Here is a very simple solution to work this around �..
1.
Persistence.xml file FIX
Two ways to resolve this �
a. Get rid of
persistence.xml file. or
b. Rename
persistence.xml to
persistence_WAS.xml
Sample code
Code:
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
<property name="persistenceXmlLocation" value="classpath:META-INF/persistence_WAS.xml"/>
</bean>
This is because J2EE container by default looks for persistence.xml under META-INF/ of web application and keeping this will cause
websphere7 to initialize JPA1 ignoring request of using JPA2.
Getting rid of persistence.xml was a choice for me by using Spring Data config.
(Throwing Validation exception of XML version attribute is invalid)
2.
Manual Initialize your persistence Manager ( remove dependency on Websphere )
LocalContainerEntityManagerFactoryBean is provided by Spring to create persistence Manager.
(Or initialize your own Persistence Manager using JPA API)
Pass your required values in
PersistentUnitInfo.
3.
Add XML Parsing Jars to you application lib
This is because once we change Websphere's classloader policy to parent last, it cannot initialize XML parsing libraries
Here is the full list -
- xalan-2.7.jar
- xbean-2.2.0.jar
- xbean_xpath-2.2.0.jar
- xercesImpl-2.6.2.jar
- xml-apis-2.8.jar
- xmlpublic-2.2.0.jar
- XmlSchema-1.4.7.jar
- xpp3-1.1.3.4.O.jar
- xstream-1.2.1.jar
4.
Change class loader policy on Websphere application server
Make Websphere to load its internal and extension JARs at last after loading all JARs from your WAR or EAR file -
PARENT_LAST does the trick here.
Here is path to update � Steps
Under
Applications > Application Types > WebSphere enterprise applications
Select the deployed application -
Enterprise Applications > JPA2-Application > Manage Modules
Choose the WAR file eg.
JPA2-Application.war
Change the
Class loader order setting to
Classes loaded with local class loader first(parent last)
Under
Class loader viewer you can see your
ClassLoader - Search Order - You can see Jars and classes from your EAR are loaded first.
Here is the screen shot.
server-setting.jpgserver-setting.jpg
That�s it � Restart your server and your JPA 2 Application will start working in Websphere 7 and NO NEED of installing Websphere JPA2 feature pack.