Hi,
I have a serious problem. My datas stored only into the session, but didn't into the database.
The request goes correctly.
I use MySQL and Hibernate3.
In the code, I have a HibernateSessionRequestFilter what is implement the Filter (doFilter, init and destroy methods).
I putted into my web.xml the following lines:
Code:
<filter>
<filter-name>HibernateSessionRequestFilter</filter-name>
<filter-class>hu.steve.common.web.filter.HibernateSessionRequestFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HibernateSessionRequestFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
What is the mistake?