I have created a project of Spring ,Spring Security and Hibernate.In integrated project as we know Spring Security works by using interceptors and basically based on request oriented framework but jsf is component based framework.So how this request will be handled in this environment.Is it necessary to provide faces-config.xml
along with hibernate.cfg.xml
and applicationContext.xml
(for Spring Security Configuration)? Or is just setting filter in `web.xml' sufficient?
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>