Update instructions/convert-jpa-to-spring-data-cosmos.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Theo van Kraay 2025-08-14 14:49:24 +01:00 committed by GitHub
parent f0b344ebf7
commit 9681e1cc46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -433,7 +433,6 @@ private void populateRelationships(Entity entity) {
**Use search tools to find and update every occurrence:**
- Search for: `int.*TEST.*ID` → Replace with: `String.*TEST.*ID = "test-xyz-1"`
- Search for: `setId\(\d+\)` → Replace with: `setId("test-id-X")`
- Search for: `findById\(\d+\)` → Replace with: `findById("test-id-X")`
- Search for: `\.findPetTypes\(\)` → Replace with: `.findAllOrderByName()`