测试findOne时出错
来源:4-1 买家类目-dao(上)
慕勒7467402
2021-05-26
写回答
1回答
-
慕勒3174664
2021-05-28
JpaRepository 的版本问题。把
return repository.findOne(categoryId);
改成
return respository.getById(categoryId).get();
就可以了
00
相似问题
测试findOne时出错
来源:4-1 买家类目-dao(上)
慕勒7467402
2021-05-26
1回答
慕勒3174664
2021-05-28
JpaRepository 的版本问题。把
return repository.findOne(categoryId);
改成
return respository.getById(categoryId).get();
就可以了
相似问题