Cita:
Iniciado por Fuzzylog Perdón, es que lo único que he visto de hibernate es asociado a Spring.
Échale un vistazo a este documento y mira si puedes aprovechar algo ;)
[url]http://www.laliluna.de/download/struts-hibernate-integration-tutorial-en.pdf[/url]
Especialmente a:
<?xml version='1.0' encoding='UTF-8'?>
<!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="connection.url">jdbc:postgresql://localhost/libraryweb</property>
<property name="connection.username">postgres</property>
<property name="connection.password">p</property>
<property name="connection.driver_class">org.postgresql.Driv er</property>
<property name="dialect">org.hibernate.dialect.PostgreSQLDia lect</property>
</session-factory>
</hibernate-configuration>
Muchas gracias por responder tan rapidamente. Al final ya lo he solucionado. El problema era que reinstale el servidor y se me olvido añadirle el pool de conexiones. Ya lo he añadido y funciona. Muchas gracias. Un saludo.
David.