我正在使用mongodb和spring,我使用maven添加了spring-data-mongodb
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.4.0.RELEASE</version>
</dependency>
我正在尝试使用@DBRef延迟加载,但是我收到错误
@DBRef(lazy = true)
private List<Bill> shoppingHistory = new ArrayList<>();
我的错误是
注释类型DBRef
未定义属性lazy
我只能使用db属性。
有人可以帮我解决这个问题吗?