mirror of https://github.com/apache/openjpa.git
OPENJPA-513. Three of the four test failures with the IBM JDK were due to a malformed listener-orm.xml file. XML elements were out of order and there were a couple of syntax errors.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@620200 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
94f233f0d8
commit
8de471e541
|
@ -21,16 +21,17 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm orm_1_0.xsd"
|
||||
version="1.0">
|
||||
<package>org.apache.openjpa.persistence.callbacks</package>
|
||||
<entity class="EntityListenerEntity">
|
||||
<exclude-default-listeners>true</exclude-default-listeners>
|
||||
</entity>
|
||||
<persistence-unit-metadata>
|
||||
<persistence-unit-defaults>
|
||||
<entity-listeners>
|
||||
<entity-listener class="ListenerImpl">
|
||||
<entity-listener class=
|
||||
"org.apache.openjpa.persistence.callbacks.ListenerImpl">
|
||||
</entity-listener>
|
||||
</entity-listeners>
|
||||
</persistence-unit-defaults>
|
||||
</persistence-unit-metadata>
|
||||
<package>org.apache.openjpa.persistence.callbacks</package>
|
||||
<entity class="EntityListenerEntity">
|
||||
<exclude-default-listeners/>
|
||||
</entity>
|
||||
</entity-mappings>
|
Loading…
Reference in New Issue