我有一个用例,我希望能够根据对象的属性缓存方法的结果。该物业是私人的,但暴露了公共吸气剂。 (这可以改变,但我不想这样做)
@Cacheable(cacheNames = "detailedData", key = "#id", condition = "#currentPackage.getSellingPrice() > -1")
public Map<String, Object> getDetailedTestData(int id,PackageEntity currentPackage) {
/**
some code
*/
}
PackageEntity
上课是
public class PackageEntity {
private int sellingPrice;
public int getSellingPrice() {
return sellingPrice;
}
public void setSellingPrice(int sellingPrice) {
this.sellingPrice = sellingPrice;
}
/**
some other fields and their getter/setter
*/
}
有条件缓存的Spring doc指定了如何使用条件。但是,这种情况并不适用于条件。无论销售价格如何,它都可以简单地缓存所有包裹。 我无法理解我做错了什么。我没有合适的例子可以参考。
任何帮助表示赞赏。感谢
答案 0 :(得分:0)
如果指定的字段是私有的,SpEL似乎也会查找该字段的公共getter。
因此字段可以是公开的,也可以是公共的getter
@Cacheable(cacheNames = "detailedData", key = "#id", condition ="#currentPackage.sellingPrice > -1")
public Map<String, Object> getDetailedTestData(int id,PackageEntity currentPackage) {
/**
some code
*/
}
所以上面的代码对我来说没用。