我有一个 Spring-MVC 应用程序,我希望在其中有一个显示在多个页面上的登录栏 - 并使用 jQuery 的对话框系统在模式对话框窗口中显示表单。我应该在其中使用什么 Spring-Security 设置securityContext.xml
才能正常工作?
这是我目前使用的:
<http pattern="/resources/**" security="none" />
<http auto-config="true" use-expressions="true">
<intercept-url pattern="/redirect.jsp" access="permitAll" />
<intercept-url pattern="/*.html" access="permitAll" />
<intercept-url pattern="/**" access="denyAll" />
<form-login login-page="" />
<logout logout-success-url="/logout" />
</http>