Hoola que tal, cuando intento completar la configuracion del JPA a traves del archivo "persistence.xml" Eclipse detecta una serie de errores en el siguiente codigo: En la segunda linea aparece el mensaje de error “Cannot find the declaration of element “persistence” y en la línea 12 aparece el mensaje de error “The value of attribute “value” asociate with element type property must not contain the ‘<’ character.
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.2"
xmlns="http://xmlns.jpc.org/xml/ns/persistance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd">
<persistence-unit name="tienda"
transaction-type="RESOURCE_LOCAL">
<properties>
<property name="javax.persistence.jdbc.driver"
value="org.h2.Driver”/>
<property name="
javax.persistence.jdbc.url "
value="jdbc:h2:mem:tienda”/>
<property name="
javax.persistence.jdbc.user " value="sa" />
<property name="javax.persistence.jdbc.password "
value="”/>
<property name=" hibernate.dialect "
value="org.hibernate.dialect.H2Dialect” />
</properties>
</persistence-unit>
</persistence>
Cualquier orientacion sobre la naturaleza de los errores y sobre la forma de resolverlos será bienvenida.
Gracias!