如何在Spring Boot mongorepository上找到现有的收集列表?

时间:2019-02-26 11:53:19

标签: mongodb spring-mongodb mongorepository

首先,下面是mongodb的文档类,

@Getter
@Setter
@Document(collection="Posts") // The name of collection is "Posts"
public class Post {

    @Id
    private String _id;

    @Indexed(unique = true)
    private Long id;

    @Field
    private String title;

    @Field
    private String body;

    @Field
    private Date createdDate;

    @DBRef 
    private User user;

    @DBRef 
    private Collection<Tag> tags;
}

我做了一个简单的mongorepository接口

public interface PostMongoRepository extends MongoRepository<Post, Long> {
}

但是我在将初始json数据加载到服务层的mongodb中时遇到了麻烦,

try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), "EUC-KR"))) {
            String line;
            StringBuffer strBuffer = new StringBuffer();
            while ((line = br.readLine()) != null) {
                strBuffer.append(line+ "\n");
            }

            ObjectMapper objectMapper = new ObjectMapper();
       objectMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
            TypeReference<List<Post>> typeReference = new TypeReference<List<Post>>(){};
            Collection<Post> posts = objectMapper.readValue(strBuffer.toString(), typeReference);

            // I am stuck on this line
            if(postMongoRepository.FIND_THE_COLLECTION_TITLE) {  

              for(Post post : posts) {
                postMongoRepository.save(post);
              }
            }
        } catch (IOException ex) {
            System.out.println(ex.getMessage());
        }

我尝试确认是否生成了“帖子”集合。但是我不知道如何通过mongorepository接口找到现有的集合。我尝试使用@Query批注,但是它仅限于键值而不是集合内。

我想找出如何使用mongorepository接口查找mongodb数据库的现有集合。

1 个答案:

答案 0 :(得分:1)

您可以使用MongoOperations.getCollectionNames()获取所有集合名称:

https://docs.spring.io/spring-data/mongodb/docs/current/api/org/springframework/data/mongodb/core/MongoOperations.html#getCollectionNames--

无法基于Spring数据存储库获取此信息。

在正常情况下,也无需检查集合是否存在。如果丢失,它将由Spring创建(通常在启动时)。