gpt4 book ai didi

java - 使用 spring boot 和 mongodb 检索具有完整和不完整配置文件的用户数量的最佳方法是什么?

转载 作者:行者123 更新时间:2023-12-02 12:07:54 24 4
gpt4 key购买 nike

问题

1)我必须显示具有不完整和完整配置文件的用户总数。

2) 不完整的配置文件是指具有 4 个字符串类型字段的配置文件。除此之外,所有内容都是完整的配置文件。

下面是我的模型类字段

@Id
private String id;
private String[] imageIds;
private String concerns;
private String summary;
private String likings;
private String occupation;
private String religion;
private String education;
private String height;
@GeoSpatialIndexed(type = GeoSpatialIndexType.GEO_2DSPHERE)
private double[] location;
private INTERESTS[] interests;
private String fcmId;
private List connections;
private List declined;
private List pending;

我编写的代码:

1)在MySql中我可以应用类似于的直接查询

a)从 X 中选择 count(*),其中 a 为 NULL 或 b IS NULL --> ForIncompleteProfiles

b)从 X 中选择 count(*),其中 a IS NOT NULL 或 b IS NOT NULL --> 对于 CompleteProfiles

但是在这里,

2)我可以使用 findAll() 方法检索用户列表中的所有用户,然后使用 user.getA() 或 user.getB() 任何一个字段是否为空来检查每个用户。如果是,计数不完整的配置文件,否则计数完整的配置文件。

然后,我可以将这两个计数返回到 HashMap 中的 frontEndUser

Can anyone guide me if this is a correct way and if not how to do it in a more efficient way and effective way using spring boot and MongoData Repository.

下面是我的代码

@RequestMapping(value = "/showprofiles", method = RequestMethod.GET)
public Map showProfiles(HttpServletResponse response) {
int pageSize=2000;
Page<User> users=null;
int page=0;
int countInComplete=0;
int countComplete=0;
Map hm=null;
users = userService.getAllUsers(new PageRequest(page,pageSize));
do {
users = userService.getAllUsers(new PageRequest(page,pageSize));
for (User user : users) {
if (user.getName() == null || user.getGender() == null || user.getInterests() == null || user.getImageIds() == null) {
countInComplete++;
}
else{
countComplete++;
}
}
page++;
}while (users.hasNext());
hm=new HashMap();
hm.put("countComplete",countComplete);
hm.put("countInComplete",countInComplete);
return hm;
}

最佳答案

您可以使用 Spring Data MongoDb 解决您的问题。看看here.

我假设您使用存储库。

@Annotation public interface UserRepository extends ... {   
List<User> findByNameNullOrGenderNullOrInterestsNullOrImageIdsNull();
}

我认为这应该可行。尝试一下,否则会显示在文档中并找到最佳组合。

关于java - 使用 spring boot 和 mongodb 检索具有完整和不完整配置文件的用户数量的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46757007/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com