当前位置: 代码迷 >> 综合 >> org.springframework.security.authentication.InternalAuthenticationServiceException: Index: 0, Size:
  详细解决方案

org.springframework.security.authentication.InternalAuthenticationServiceException: Index: 0, Size:

热度:38   发布时间:2024-03-09 05:52:54.0

SpringSecurity使用MySQL数据库进行认证,MySQL中带中文的用户认证报此错误

org.springframework.security.authentication.InternalAuthenticationServiceException: Index: 0, Size: 0Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

MySQL的url未配置中文即转换

url: jdbc:mysql://localhost:3306/usertest?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8

在url后面添加 

&useUnicode=true&characterEncoding=utf-8

即可

  相关解决方案