Posts

Es werden Posts vom 2009 angezeigt.

Switching between Stage & Production DB with Tapestry5 & Hibernate3

create a hibernate.cfg.xml like this sample and put it into your classpath <hibernate-configuration> <session-factory> <property name="hibernate.connection.provider_class"> org.hibernate.connection.C3P0ConnectionProvider </property> <property name="hibernate.c3p0.max_size">5</property> <property name="hibernate.c3p0.min_size">1</property> <property name="hibernate.c3p0.timeout">5000</property> <property name="hibernate.c3p0.max_statements">100</property> <property name="hibernate.c3p0.validate">false</property> <property name="hibernate.cache.provider_class"> org.hibernate.cache.EhCacheProvider </property> <property name="hibernate.cache.provider_configuration_file_resource_path"> /ehcache.xml </property> <property name=...