摘要: 写好的代码commit之后,想要推送到远端,结果发现有同事提交了class文件 这时候我们需要执行以下指令 git stash git pull git stash pop 原理:先把commit的东西存到栈中,在进行pull和本地的代码进行合并,最后将之前commit的东西取出 阅读全文
posted @ 2022-04-28 17:36 程序员hg 阅读(222) 评论(0) 推荐(0) 编辑
摘要: class net.sf.cglib.core.DebuggingClassWriter overrides final method visit 这两个报错都可以在一起解决,因为这是由于Jar包冲突导致引起的,可以使用排除asm的jar包的方式来修复bug。 idea使用maven hepler插 阅读全文
posted @ 2022-04-28 17:30 程序员hg 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 楼主是在使用easyexcel导出的时候,获取数据出现这个错误,因为Spring底层是这样处理的使用LinkedhashMap来承接查询结果,导致转换异常 public List<NeedAllocationEntity> getNeedAllocationData() { //查询数据 Resul 阅读全文
posted @ 2022-04-28 17:25 程序员hg 阅读(1406) 评论(0) 推荐(0) 编辑