return new SimpleAuthenticationInfo(user.getStr("username"), user.getStr("password"), getName());
第一个参数是用户名是可以生成cookie.如果是用户对象user 就会失败,
如果要传用户必须implements java.io.Serializable
本文共 227 字,大约阅读时间需要 1 分钟。
return new SimpleAuthenticationInfo(user.getStr("username"), user.getStr("password"), getName());
第一个参数是用户名是可以生成cookie.如果是用户对象user 就会失败,
如果要传用户必须implements java.io.Serializable
转载于:https://my.oschina.net/momomo1987/blog/1529465