关于Object的私有属性的可缓存注释的条件

时间:2016-10-26 07:11:27

标签: java spring annotations ehcache spring-cache

我有一个用例,我希望能够根据对象的属性缓存方法的结果。该物业是私人的,但暴露了公共吸气剂。 (这可以改变,但我不想这样做)

@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指定了如何使用条件。但是,这种情况并不适用于条件。无论销售价格如何,它都可以简单地缓存所有包裹。 我无法理解我做错了什么。我没有合适的例子可以参考。

任何帮助表示赞赏。感谢

http://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html#cache-annotations-cacheable-condition

1 个答案:

答案 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
  */
}

所以上面的代码对我来说没用。