我现有的工作应用程序包括:
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication()
.withUser("testUser").password("testPassword").roles("ROLE_TEST");
}
登录可以正常工作。但是,如果我要在用户名/密码中添加一个带有一些非英语字符(š,č,ž)的用户,登录失败:
org.springframework.security.authentication.BadCredentialsException: Bad credentials