使用Spring缓存处理Java 8可选

时间:2016-04-25 15:01:25

标签: java spring spring-cache

考虑一个可以插入和检索对象并使用Spring缓存抽象的服务类,如何以返回Optional的方式注释方法?

class MyServiceImpl implements MyService {

    private static final String CACHE_NAME = "itemCache";      

    @Override
    @Cacheable(CACHE_NAME)
    public Optional<Item> findById(Long id) {
        // access the repository to retrieve the item
    }

    @Override
    @CachePut(cacheNames = CACHE_NAME, key = "#item.id")
    public Item insertItem(Item item) {
        ...
    }

}

在上面的示例中,引发了ClassCastException,因为insertItemItem实例放入缓存中,而findById期望可能包含Optional Item个实例。

1 个答案:

答案 0 :(得分:5)

只需对评论进行跟进即可给出明确答案。我们从Spring Framework 4.3 RC2开始。