聚合管道的 @Aggregation 注释的 spring-data-mongodb 依赖关系

问题描述 投票:0回答:1
import org.springframework.data.mongodb.repository.Aggregation;

以下导入未解决

                <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-mongodb</artifactId>
            <version>1.9.3.RELEASE</version>
        </dependency>

我试过了

                <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-mongodb</artifactId>
            <version>3.4.15</version>
        </dependency>

但是我的制作使用1.9.3.RELEASE

java maven pipeline aggregation spring-data-mongodb
1个回答
0
投票

根据docs注释接口

@Aggregation
自2.2版本以来就存在。

看来你不能在

1.9.3.RELEASE
版本中使用。

© www.soinside.com 2019 - 2024. All rights reserved.