大家好,欢迎来到IT知识分享网。
已解决java.lang.ClassCastException: class java.lang.Integer cannot be cast to class java.lang.Long异常的正确解决方法,亲测有效!!!
报错问题
下面代码段,用jdbcTemplate.queryForMap查询数据库表的ID时,虽然编译通过没有报错,但会有问题:
try {
Map<String,Object> userPo = jdbcTemplate.queryForMap("select * from auth_user where username='" + username + "'");
if (userPo == null) {
throw new UsernameNotFoundException("用户名不存在");
}
Long id = (Long)userPo.get("id"); //这行代码会报类型转换错误
String password = (String)userPo.get("password");
//用户权限
List<SimpleGrantedAuthority> authorities = new ArrayList<>();
List<Map<String,Object>> list = jdbcTemplate.queryForList("select * from auth_user_role where user_id=" + id);
if (!CollectionUtils.isEmpty(list)) {
for (Map<String,Object> po : list) {
String roleCode = (String)po.get("role_code");
authorities.add(new SimpleGrantedAuthority(roleCode));
}
}
return new User(username, password, authorities);
}catch(Exception ex){
ex.printStackTrace();
}
用Postman调用API报错如下:
java.lang.ClassCastException: class java.lang.Integer cannot be cast to class java.lang.Long (java.lang.Integer and java.lang.Long are in module java.base of loader 'bootstrap')
...
解决方法
//用下面这行代码代替原来的代码(Long)userPo.get("id"),直接转换为Long类型
Long id = ((Integer)userPo.get("id")).longValue();
福利
每周会送6本技术书籍包邮到家
由于博主时间精力有限,每天私信人数太多,没办法每个粉丝都及时回复
大家可以进社区裙或者添加博主微信
点击下方链接即可
http://t.csdn.cn/6kInJ
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/20816.html