James.K柯
码龄6年
  • 2,308
    被访问
  • 3
    原创
  • 1,433,699
    排名
  • 0
    粉丝
关注
提问 私信
  • 加入CSDN时间: 2016-04-18
博客简介:

hhi00的博客

查看详细资料
个人成就
  • 获得2次点赞
  • 内容获得1次评论
  • 获得2次收藏
创作历程
  • 3篇
    2021年
成就勋章
TA的专栏
  • 日常笔记
  • IDEA设置
    2篇
  • BUG记录
    1篇
兴趣领域 设置
  • 大数据
    mysqlredis
  • 后端
    spring架构
  • 搜索
    elasticsearch
  • 服务器
    linux
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

IDEA强制同步远程仓库到本地

项目场景:把其他分支的代码合并到当前分支,然后冲突了,然后发现有其他人解决冲突,并且提交了,此时git pull 会提示本地有冲突问题描述:原因分析:将远程分支强制同步到当前分支解决方案:git强制覆盖:git fetch --allgit reset --hard origin/mastergit pullgit强制覆盖本地命令(单条执行):git fetch --all && git reset --hard origin/master &.
原创
发布博客 2021.05.20 ·
316 阅读 ·
0 点赞 ·
0 评论

mapstruct和lombok编译出错,No property named “xxx” exists in source parameter(s). Did you mean “null”

项目场景:mapstruct和lombok编译出错,提示属性找不到报错No property named “XXX“ exists in source parameter(s). Did you mean “null“问题描述:原因分析:由于mapstruct先编译,lombok后编译,导致属性找不到,找到原因是版本问题解决方案:使用这两个的版本就可解决<lombok.version>1.18.10</lombok.version><.
原创
发布博客 2021.05.07 ·
1757 阅读 ·
2 点赞 ·
1 评论

intellij idea关闭field injection is not recommended警告

项目场景:intellij idea关闭field injection is not recommended问题描述:intellij idea关闭field injection is not recommended原因分析:IDEA设置解决方案:Preferences->Editor->Inspections->Spring->Spring Core->Core->Field Injection warning...
原创
发布博客 2021.05.07 ·
139 阅读 ·
0 点赞 ·
0 评论