0

I am working with WildFly 9.0.1.Final release and noticed this line in the standalone.xml:

<subsystem xmlns="urn:jboss:domain:jpa:1.1">
    <jpa default-datasource="" default-extended-persistence-inheritance="DEEP"/>
</subsystem>

I know that JPA version thats shipped with WildFly 9 is 2.1, so what does the value jpa:1.1 refer to here?

bfontaine
  • 18,169
  • 13
  • 73
  • 107
Vijay Kumar
  • 2,439
  • 2
  • 32
  • 51

1 Answers1

2

urn:jboss:domain:jpa:1.1 is the namespace for the XML configuration of the JPA subsystem in WildFly. In your WildFly installation, the corresponding schema is located at docs/schema/jboss-as-jpa_1_1.xsd.

The versioning of subsystem schemas is not related to the versioning of any Java EE specs.

Harald Wellmann
  • 12,615
  • 4
  • 41
  • 63