In Acegi, in order to log out from, say, a jsp, you added a link to a logout url, and set up a logout filter as below
<bean id="logoutFilter" class="org.acegisecurity.ui.logout.LogoutFilter"> (url as constructor arg)
and then added the logout filter to the filter chain.
What do you do in Spring Security ?
I have added a <logout> section to my config, but when I click on the link it looks for logout.jsp. It's almost as if there is no logout filter intercepting this "fake" url.
Do I have to add a logout filter somewhere ?



