You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/README.md
+24-10Lines changed: 24 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,18 @@ existing Maven project. Complete the steps in order.
20
20
|[Entity Bean Creation](entity-bean-creation.md)| How to generate clean, idiomatic Ebean entity beans for AI agents; patterns and anti-patterns; minimal boilerplate without getters/setters; decision tree for code generation |
21
21
|[Lombok with Ebean entity beans](lombok-with-ebean-entity-beans.md)| Which Lombok annotations to use and avoid on entity beans; why `@Data` is incompatible with Ebean; how to use `@Getter` + `@Setter` + `@Accessors(chain = true)`|
22
22
23
+
## Querying
24
+
25
+
| Guide | Description |
26
+
|-------|-------------|
27
+
|[Write Ebean queries with query beans](writing-ebean-query-beans.md)| Step-by-step guidance for AI agents to write type-safe Ebean queries; choose the right terminal method; tune `select()` / `fetch()` / `fetchQuery()`; and project to DTOs when entity beans are not the right output |
28
+
29
+
## Persisting & transactions
30
+
31
+
| Guide | Description |
32
+
|-------|-------------|
33
+
|[Persisting and transactions with Ebean](persisting-and-transactions-with-ebean.md)| Step-by-step guidance for AI agents to choose `insert` / `save` / `update` / `delete`; inspect cascades; select the right transaction boundary; and use batch or bulk update for large write sets |
34
+
23
35
## Testing
24
36
25
37
| Guide | Description |
@@ -61,10 +73,10 @@ Add a section near the top of your project README:
61
73
## AI Agent Instructions
62
74
63
75
This project uses [Ebean ORM](https://ebean.io). Step-by-step guides for common
64
-
Ebean tasks (Maven setup, database configuration, test containers, DB migrations,
0 commit comments