Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Fehler beim Konfigurieren von Hibernate 5.0.1 und MySQL

Hier ist also die Lösung.

Ersetzen

<hibernate-configuration
        xmlns="http://www.hibernate.org/xsd/hibernate-configuration"
        xsi:schemaLocation="http://www.hibernate.org/xsd/hibernate-configuration hibernate-configuration-4.0.xsd"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

mit

<hibernate-configuration>

und fügen Sie den folgenden Code oben in der Datei hinzu.

<!DOCTYPE hibernate-configuration PUBLIC 
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 

Ersetzen Sie auch in der Konfigurationsdatei <mapping resource=...> zu <mapping class=...>