https://github.com/sake92/cakum-pakum
Spring REST starter
https://github.com/sake92/cakum-pakum
Last synced: 5 months ago
JSON representation
Spring REST starter
- Host: GitHub
- URL: https://github.com/sake92/cakum-pakum
- Owner: sake92
- License: apache-2.0
- Created: 2019-03-03T16:41:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-05T16:32:42.000Z (about 5 years ago)
- Last Synced: 2025-10-14T15:02:20.919Z (9 months ago)
- Language: Java
- Size: 106 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cakum pakum
This is a REST starter project with some nice defaults.
Open `http://localhost:8080/swagger-ui.html` to play with it.
## Lombok installation
Intellij users just install the Lombok plugin.
Eclipse users:
- download & run JAR, it detects Eclipse i installs Lombok
- close and open Eclipse (not File -> Restart!!!)
- turn on **Annotation Processing** on project
---
## Code style
You can import and use the `eclipse-java-formatting-settings.xml` style (yes, Intellij supports it also).
---
## Database
This project is using H2 in-memory db.
- go to http://localhost:8080/h2-console
- connect to `jdbc:h2:mem:testdb`, username: `sa`, password:
```sql
SELECT * FROM BLOG_POST ;
SELECT * FROM BLOG_POST_COMMENTS ;
SELECT * FROM COMMENT ;
```