@PostMapping("/findone")
    public String getone(UserVo userVo) throws IllegalAccessException, InvocationTargetException, InstantiationException {
        if (userVo != null) {
            UserPo userPo = (UserPo) ConvertUtil.convertDtoAndVo(userVo, UserPo.class);
            return ResultUtil.okRes(dataUserService.findOne(userPo));
        } else {
            return ResultUtil.execRes();
        }
    }

这个时候,需要看一下你的pom里面是否有devtools这个包

如果有的话在resources下新建文件夹 META-INF新建文件内容:

restart.include.mapper=/mapper-[\\w-\\.]+jar
restart.include.pagehelper=/pagehelper-[\\w-\\.]+jar

 

相关文章:

  • 2021-03-27
  • 2021-10-01
  • 2021-12-28
  • 2021-08-05
  • 2021-12-11
  • 2021-08-09
  • 2021-06-12
猜你喜欢
  • 2022-01-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2022-01-03
  • 2021-12-01
相关资源
相似解决方案