Spring 引导缓存 SpEL(#result)Returns 空

Spring Boot Cache SpEL (#result) Returns Null

我有一个 Spring 启动 RESTful API 来接收和发送短信给客户。我的应用程序连接到我们的本地 SMS 服务器,并通过移动运营商接收 SMS 并将其推送给客户端。我的应用程序运行良好。但是我想通过实现缓存来优化我的应用程序。我正在使用 Spring Boot 的简单缓存。我在创建新短信时遇到了一些挑战。

所有 SMS sent/received 均采用对话形式(每张票)并附有客户端。所以我很难将客户端保存到缓存中。下面是 createClient() 片段:

@Transactional
@Caching(evict = {
        @CacheEvict("allClientsPage"),
        @CacheEvict("countClients")
}, put = {
        @CachePut(value = "clients", key = "#result.id", unless="#result != null"),
        @CachePut(value = "clientsByPhone", key = "#result.phoneNumber", unless="#result != null")
})
public Client create(Client client) {
    Client c = new Client();
    if (client.getName() != null) c.setName(client.getName().trim());
    c.setPhoneNumber(client.getPhoneNumber().trim());

    /**---***/

    c.setCreatedAt(new Date());
    return clientRepository.save(c);
}

当我尝试创建一个新客户端时,

org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'id' cannot be found on null

被抛出。

如有任何帮助,我们将不胜感激。

而不是使用 unless="# result! = null" 使用 condition="#result != null"