|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.click.extras.hibernate.SessionFilter
Provides a Hibernate session filter to support the SessionContext class, closing sessions at the end of each request.
To use SessionContext
configure the SessionFilter in you
web application's /WEB-INF/web.xml file.
<web-app> <filter> <filter-name>session-filter</filter-name> <filter-class>net.sf.click.extras.hibernate.SessionFilter</filter-class> </filter> <filter-mapping> <filter-name>session-filter</filter-name> <servlet-name>click-servlet</servlet-name> </filter-mapping> <servlet> <servlet-name>click-servlet</servlet-name> .. </web-app>
The SessionFilter init() method loads the SessionContext class which in turn initializes the Hibernate runtime.
SessionContext
,
HibernateForm
Constructor Summary | |
SessionFilter()
|
Method Summary | |
void |
destroy()
|
void |
doFilter(ServletRequest request,
ServletResponse response,
FilterChain chain)
Close any user defined sessions if present. |
void |
init(FilterConfig filterConfig)
Initialize the Hibernate Configuration and SessionFactory. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public SessionFilter()
Method Detail |
public void init(FilterConfig filterConfig) throws ServletException
init
in interface Filter
filterConfig
- the filter configuration
ServletException
- if an initialization error occursFilter.init(FilterConfig)
public void destroy()
destroy
in interface Filter
Filter.destroy()
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException
doFilter
in interface Filter
request
- the servlet requestresponse
- the servlet responsechain
- the filter chain
IOException
- if an I/O error occurs
ServletException
- if a servlet error occursFilter.doFilter(ServletRequest, ServletResponse, FilterChain)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |