Estou tendo este erro no hibernate:
Initial SessionFactory creation failed.
org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml
O meu arquivo hibernate.cfg.xml está assim:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/data_base?charSet=LATIN1</property>
<property name="hibernate.connection.username">admin</property>
<property name="hibernate.connection.password">admin</porperty>
<property name="hibernate.connection.pool_size">50</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.show_sql">true</property>
<mapping class="dto.ResponseType" />
</session-factory>
</hibernate-configuration>
O que teria de errado no hibernate.cfg.xml?



: