JPA Jooq Marriage
Technologies Used
API Endpoints
Create Post
POST /api/users/{user_name}/posts/{
"title": "Sample Post",
"content": "Post content here",
"published": true,
"publishedAt": "2024-01-20T10:00:00",
"comments": [
{
"title": "Comment Title",
"review": "Comment content",
"published": true,
"publishedAt": "2024-01-20T10:00:00"
}
],
"tags": [
{
"name": "tech",
"description": "Technology related posts"
}
]
}Get Post
Sequence Diagrams
Post Creation Flow (JPA)
Post Retrieval Flow (JOOQ)
Validation Rules
Format code
Run tests
Run locally
Using Testcontainers at Development Time
Useful Links
Last updated