I am looking at the performance optimization of Open JPA for my WAS 7.0.0.25 server. I enabled OpenJPA trace from WAS console to understand what properties are taken for caching.
There is no openjpa.= type entry in my persistance.xml. But I can see entries in the trace.log as below:
openjpa.IgnoreChanges: false
openjpa.FlushBeforeQueries: 0
openjpa.ConnectionRetainMode: 0
But i could not find the configuration that sets these properties so that I can play around with them.
Can anyone guide me where I can find these values coming from the Open JPA provided by WAS 7?
Accordingly to the documentation you should add this line to your persistence.xml:
http://openjpa.apache.org/builds/1.0.2/apache-openjpa-1.0.2/docs/manual/ref_guide_logging_openjpa.html
ADDED
If you add those keys in your persistence.xml, probably the default values will be overridden.