使用SpringBoot报错:Inferred type ‘S‘ for type parameter ‘S‘ is not within its bound。【解决办法】

2022-12-01 14:22:38 浏览数 (1)

❌一、错误展示

使用SpringBoot时出现如下错误:

Inferred type ‘S’ for type parameter ‘S’ is not within its bound

错误代码:

代码语言:javascript复制
    public Type updateType(Long id, Type type) {
         Optional<Type> t = typeDao.findById(id);
        if (t == null){
            throw new NotFoundException("不存在该类型");
        }
        BeanUtils.copyProperties(type,t);
        return typeDao.save(t);
    }

✅二、解决办法

第一种:

typeDao.findById(id);改为typeDao.findById(id) .orElse(null);

代码语言:javascript复制
    public Type updateType(Long id, Type type) {
        Type t = typeDao.findById(id).orElse(null);
        if (t == null){
            throw new NotFoundException("不存在该类型");
        }
        BeanUtils.copyProperties(type,t);
        return typeDao.save(t);
    }

第二种:

typeDao.findById(id);改为typeDao.findById(id) .get();

代码语言:javascript复制
    public Type updateType(Long id, Type type) {
        Type t = typeDao.findById(id).get();
        if (t == null){
            throw new NotFoundException("不存在该类型");
        }
        BeanUtils.copyProperties(type,t);
        return typeDao.save(t);
    }

0 人点赞