我有以下 spring 安全配置,如何更改它登录以基于 http GET 而不是 POST 工作,以便登录 url 类似于: *http://localhost/myapp/j_security_check?j_username=scott&j_password=tiger&landing=一些.html*
<http auto-config="true" lowercase-comparisons="false">
<intercept-url pattern="/images/**" filters="none"/>
<intercept-url pattern="/styles/**" filters="none"/>
<intercept-url pattern="/scripts/**" filters="none"/>
<!-- Temp Below for testing reports -->
<intercept-url pattern="/admin/**" access="ROLE_ADMIN"/>
<intercept-url pattern="/passwordHint*" access="ROLE_ANONYMOUS,ROLE_ADMIN,ROLE_USER"/>
<intercept-url pattern="/signup*" access="ROLE_ANONYMOUS,ROLE_ADMIN,ROLE_USER"/>
<intercept-url pattern="/unauthorized*" access="ROLE_ANONYMOUS,ROLE_ADMIN,ROLE_USER"/>
<intercept-url pattern="/**/*.action*" access="ROLE_ADMIN,ROLE_USER"/>
<logout success-handler-ref="logoutHandler" invalidate-session="true" logout-url="/logout"/>
<form-login login-page="/login" authentication-success-handler-ref="authSuccessHandler"
authentication-failure-handler-ref="authFailureHandler" authentication-failure-url="/login?error=true"
login-processing-url="/j_security_check"/>
<remember-me user-service-ref="userDao" key="e37f4b31-0c45-11dd-bd0b-0800200c9a66"/>
</http>