2

我已经阅读了参考手册,查看了论坛帖子(例如,如何在 SPRING MVC POJO 的字段中保存日语字符),据我所知,我已经完成了国际化 Spring 支持所需的所有事情,但我有使用 Unicode/特殊字符匹配 Spring Security 3 In-Memory 用户名问题。请注意,我的应用程序使用 UTF-8 并且一切正常,包括输入 Unicode 密码在内都运行良好(但是,这个 Unicode 密码很可能会产生误导,因为在幕后它可能会将其转换为另一个字符,而这个字符是被编码的?) . 我有一种感觉,Unicode 用户名的不匹配可能是 Spring Security In-Memory 内部化的一个错误,但需要确认这一点。

为了读者的利益,我已经完成了所有必要的基本配置,请注意,如果我不使用 Unicode 字符作为用户名,一切都会按预期工作,否则即使输入了正确的凭据,身份验证也会失败。此外,不会抛出异常。

我的片段如下...

web.xml

      <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
          <param-name>encoding</param-name>
          <param-value>UTF-8</param-value>
        </init-param>
        <init-param>
          <param-name>forceEncoding</param-name>
          <param-value>true</param-value>
        </init-param>
      </filter>
      <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
      </filter-mapping>

spring-servlet-context.xml

        <default-servlet-handler />

        <interceptors>      
            <beans:bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
                <beans:property name="paramName" value="lang" />
            </beans:bean>

            <beans:bean class="org.springframework.web.servlet.theme.ThemeChangeInterceptor">
                <beans:property name="paramName" value="theme" />
            </beans:bean>   

        </interceptors> 


          <resources mapping="/resources/**" location="/resources/" />


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

        <beans:bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver">
            <beans:property name="defaultLocale" value="en"/>
        </beans:bean>

        <!-- Theme setup --> 
        <beans:bean id="themeSource" class="org.springframework.ui.context.support.ResourceBundleThemeSource">
                <beans:property name="basenamePrefix" value="theme-" />
        </beans:bean>

        <beans:bean id="themeResolver" class="org.springframework.web.servlet.theme.CookieThemeResolver">
            <beans:property name="defaultThemeName" value="default" />
        </beans:bean>


        <beans:import resource="spring-security.xml"/>

         <context:component-scan base-package="com.myproject.platform" />

    </beans:beans>

弹簧安全.xml

      <beans:bean id="encoder" class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder" />              


      <authentication-manager alias="authenticationManager">
        <authentication-provider user-service-ref="userService">                
            <password-encoder ref="encoder" />                      
        </authentication-provider> 
      </authentication-manager>

      <beans:import resource="user-security-bean-config.xml"/> 

用户安全 bean-config.xml

        <user-service id="userService">
          <user name="ışığı" password="encodedpasswordstring" 
                         authorities="R_U,R_A"/>

        </user-service>

请注意,如果我有用户名,例如 isigi(没有特殊的 unicode 字符),那么一切正常。

在我的 jsp 文件中,我在最上面一行:

<%@ page language="java" session="false" contentType="text/html; charset=utf-8" pageEncoding="UTF-8"%>

...在头部,我有...

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

还有我的 xml 文件,在第一行声明的 UTF-8,例如,

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

1 回答 1

3

为了其他可能遇到类似问题的人的利益,web.xml 文件中 encodingFilter 的ORDER非常重要,它必须位于过滤器列表的顶部,否则将不起作用。尽管我已经阅读了我发布的链接,但不知何故我错过了两次,直到我昨晚深夜第三次阅读它。我忘了在我的帖子中提到,我已通过在适当的位置添加 URIEncoding="UTF-8" 将 Tomcat 设置正确配置为 server.xml 文件中的 UTF-8,如下所示:

<Connector port="8080" protocol="HTTP/1.1"
       connectionTimeout="20000"
       redirectPort="8443" 
       URIEncoding="UTF-8"/>


<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8" />

我希望这个答案(连同问题中所述的设置)将帮助某人节省数小时甚至数夜的挫败感,因为他们让特殊的 Unicode 字符与 Spring MVC / Security 一起工作。

于 2013-10-09T12:30:01.530 回答