Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghillert/coherence-hibernate-demo2
Simple Coherence Hibernate Demo
https://github.com/ghillert/coherence-hibernate-demo2
Last synced: about 4 hours ago
JSON representation
Simple Coherence Hibernate Demo
- Host: GitHub
- URL: https://github.com/ghillert/coherence-hibernate-demo2
- Owner: ghillert
- License: apache-2.0
- Created: 2023-02-21T19:58:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T21:14:35.000Z (almost 2 years ago)
- Last Synced: 2024-11-06T21:49:33.800Z (about 2 months ago)
- Language: Java
- Size: 64.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Getting Started
== REST
```
curl -X POST http://localhost:8080/api/foo \
-H 'Content-Type: application/json' \
-d '{"name":"bar"}'
``````
curl -X GET http://localhost:8080/api/foo \
-H 'Content-Type: application/json'
``````
curl -X GET http://localhost:8080/api/foo/1 \
-H 'Content-Type: application/json'
```