Spring Boot Cache SpEL(#result)返回Null
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot Cache SpEL(#result)返回Null相关的知识,希望对你有一定的参考价值。
我有一个Spring Boot RESTful API来接收和发送短信给客户。我的应用程序连接到我们的本地SMS服务器,并通过移动运营商接收和推送SMS到客户端。我的申请效果很好。但我想通过实现缓存来优化我的应用程序。我正在使用Spring Boot的简单缓存。在创建新短信时我遇到了一些挑战。
发送/接收的所有短信都以对话的形式(每张票)和客户端连接。所以我很难将客户端保存到缓存中。以下是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);
}
当我尝试创建一个新客户端时,a
org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'id' cannot be found on null
被扔了。
任何协助将不胜感激。
答案
而不是使用unless="# result! = null"
使用condition="#result != null"
以上是关于Spring Boot Cache SpEL(#result)返回Null的主要内容,如果未能解决你的问题,请参考以下文章
249.Spring Boot+Spring Security:基于URL动态权限:扩展access()的SpEL表达式