我用@Service 注释的服务类看起来很像:
@Service
@Transactional
public class ItemService {
private final ItemRepo itemRepo;
@Autowired
public ItemService(ItemService itemRepo) {
this.itemRepo = itemRepo;
}
public Item findItemByName(String name) {
return itemRepo.findItemByName(name)
.orElseThrow(() -> new ItemNotFoundException(name));
}
每当在数据库中找不到项目时,此方法会通过我的 ApiExceptionHandler 引发 ItemNotFoundException,该 ApiExceptionHandler 扩展了 ResponseEntityExceptionHandler,并使用 @ControllerAdvice 进行注释。这正是我期望发生的,但我的问题是如何从 ControllerAdvice 带注释的类中“调用”ItemAlreadyExistsException,我尝试了类似
public Item addItem(Item item){ // throws an exception if the item's name already exists.
if (itemRepo.findItemByName(item.getName()).isEmpty())
return itemRepo.save(item);
else throw new ItemAlreadyExistsException(item.getName()));
}
但它要求我在方法的签名中添加 throws 异常,然后不调用 @ControllerAdvice。
或者,如果有一些方法,如 itemRepo.verifyItemNotExist(item.getName()).orElseThrow.. 这可能会做我想要的。
我希望我的问题很清楚,并感谢您的帮助。