Olá Pessoal
Estou crinado um projeto com JPA e fiz toda a configuração “que acredito” ser necessária porém o meu persistence.xml está dando o seguinte erro:
Error - schema_reference.4: Failed to read schema document ‘http://java.sun.com/xml/ns/
persistence/persistence_1_0.xsd’, because 1) could not find the document; 2) the document could
not be read; 3) the root element of the document is not .
Error - cvc-elt.1: Cannot find the declaration of element ‘persistence’.
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="jpa-escola">
<class> model.Pessoa</class>
</persistence-unit>
</persistence>