Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine @DocumentReference documentation about self._id references #4925

Closed
rfelgent opened this issue Mar 17, 2025 · 5 comments
Closed

Refine @DocumentReference documentation about self._id references #4925

rfelgent opened this issue Mar 17, 2025 · 5 comments
Assignees
Labels
type: documentation A documentation update

Comments

@rfelgent
Copy link
Contributor

Hello,

according to documentation this works

@Document
class Book {

  @Id
  ObjectId id;
  String title;
  ObjectId publisherId;
}

@Document
class Publisher {

  @Id
  ObjectId id;
  String acronym;
  String name;

  @ReadOnlyProperty
  @DocumentReference(lookup="{'publisherId':?#{#self._id} }")
  List<Book> books;
}

I tried to change the data type from ObjectId to String and it does not work.

@Document
class Book {

  @Id
  String id;
  String title;
  String publisherId;
}

@Document
class Publisher {

  @Id
  String id;
  String acronym;
  String name;

  @ReadOnlyProperty
  @DocumentReference(lookup="{'publisherId':?#{#self._id} }")
  List<Book> books;
}

What am I missing ?

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Mar 17, 2025
@mp911de
Copy link
Member

mp911de commented Mar 17, 2025

What is the data type of your identifiers in the database? Using @Id with String identifiers can cause that the identifier is converted to String in the domain model but can be an ObjectId in the database and therefore, the query {'publisherId':?#{#self._id} } would use a String in the input while the database Id is an ObjectId and therefore yield no matches.

Have you tried using @MongoId instead of @Id

@mp911de mp911de added the status: waiting-for-feedback We need additional information before we can continue label Mar 17, 2025
@rfelgent
Copy link
Contributor Author

rfelgent commented Mar 18, 2025

Quick response: In my current project,I modelled neither @Id nor @MongoId and fallback to the logic "repository logic should honor a field named id". The given example in my first comment was more or less an illustration of my problem.

Indeed, I could try with `@MongoId. Is there another possibility to influence the corresponding logic without using annotations (without touching the model) ?

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Mar 18, 2025
@mp911de mp911de self-assigned this Mar 18, 2025
@mp911de
Copy link
Member

mp911de commented Mar 18, 2025

Just to confirm, my assumption holds true:

{
  "_id": {
    "$oid": "67d98819f948d44f0a88565e"
  },
  "title": "title 0",
  "publisherId": "67d98819f948d44f0a88565d",
  "_class": "com.example.demo.Book"
}

Image

When using String Id's, then the object is actually using an ObjectId. As you can see, the automatic conversion only happens for the identifier while publisherId uses a plain string.

The reference lookup operates on the result Document to build the @DocumentReference lookup filter which contains an object Id for _id. We deliberately do not use the materialized entity as entities are under construction and especially when creating entities via constructor, there's no entity object available yet.

To make this work, actually Book.publisherId must be stored as ObjectId. Annotating this property with @Field(targetType = FieldType.OBJECT_ID) makes it work with String-typed properties.

@mp911de mp911de added type: documentation A documentation update and removed status: waiting-for-triage An issue we've not yet triaged status: feedback-provided Feedback has been provided labels Mar 19, 2025
@mp911de mp911de changed the title OneToMany style lookups Refine @DocumentReference documentation about self._id references Mar 19, 2025
@mp911de
Copy link
Member

mp911de commented Mar 19, 2025

I turned this ticket into a documentation enhancement and updated the docs to reflect the type relationship.

@rfelgent
Copy link
Contributor Author

rfelgent commented Mar 19, 2025

thank you very much @mp911de for updating the documentation !

So all solutions for fine grained configuration are based on model/entity enhancements via annotations, e.g. @Field(targetType = FieldType.OBJECT_ID). I will give it a try.

Thx again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: documentation A documentation update
Projects
None yet
Development

No branches or pull requests

3 participants