注销后重定向到错误的语言

Redirect after logout to the wrong language

我正在使用 spring 安全和 i18n。 我的应用程序有 2 种语言:Fr 和 En,Fr 是默认语言。但是,当我使用英语登录然后注销时,我将被重定向到法语主页。我尝试更改注销 url,包括语言部分,如下所示: “/login/login.mvc?logout=True?language=i18n_get_lang()” ,但没有成功。任何想法如何解决这个问题都将非常受欢迎。 PS,登录重定向正常工作。

下面是我的springSecurity.xml

    <beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security-4.0.xsd">



    <http auto-config="true" use-expressions="true">
        <intercept-url pattern="/login/login.mvc" access="isAnonymous()" />
        <!-- <intercept-url pattern="/admin**" access="ROLE_USER" /> -->
        <form-login
            login-processing-url="/login/login.mvc" 
            login-page="/login/login.mvc" 
            default-target-url="/login/accueil.mvc" 
            authentication-failure-url="/login/login.mvc?Error=True" 
            username-parameter="j_username"
            password-parameter="j_password" />
        <logout logout-success-url="/login/login.mvc?logout=True?language=localeChangeInterceptor" 
                logout-url="/login/j_spring_security_logout"/>
        <!-- unable csrf protection -->
        <csrf disabled="true"/>
    </http>

    <authentication-manager>
        <authentication-provider>
          <user-service>
            <user name="user" password="1234" authorities="ROLE_USER" />
          </user-service>
        </authentication-provider>
    </authentication-manager>

</beans:beans>

我的MVC-servlet.xml

   <?xml version="1.0" encoding="UTF-8" ?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd 
         http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx.xsd">

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <mvc:resources mapping="/css/**" location="/css/" />
    <mvc:resources mapping="/images/**" location="/images/" />
    <mvc:resources mapping="/js/**" location="/js/" />

    <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
         <property name="basename" value="classpath:i18n/Message"/>
         <property name="defaultEncoding" value="UTF-8"/>
    </bean>

    <bean id="localeResolver"
        class="org.springframework.web.servlet.i18n.SessionLocaleResolver">
        <property name="defaultLocale" value="fr" />
    </bean>

    <bean id="localeChangeInterceptor"
        class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
        <property name="paramName" value="language" />
    </bean>

    <mvc:interceptors>
<!-- Changes the locale when a 'lang' request parameter is sent; e.g. /?lang=de -->
  <bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
      <property name="paramName" value="language"/>
   </bean>
</mvc:interceptors>

    <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping" >
        <property name="interceptors">
           <list>
            <ref bean="localeChangeInterceptor" />
           </list>
        </property>
    </bean>


</beans>

我找到了解决办法:将MVC中的SessionLocaleResolver改成CookieLocaleResolver-servlet.xml.