我使用下面的代码来过滤和提取实体的数据
import org.springframework.data.jpa.domain.Specification;
List<ServerAttributes> serverAttributesList = serverAttributesRepository
.findAll(Specification.where(spec1).and(spec2).and(spec3));
但是现在我有了可变数量的规范,如何在运行时将规范添加到where子句中
1条答案
按热度按时间x6yk4ghg1#
你可以这样做: