Skip to content

cicekhayri/tomee-javaee-crud-rest-starter-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TomEE Java EE CRUD Rest Starter Project

To run the application enter the following command in the project directory

$ mvn package tomee:run

Endpoints

POST

curl -d '{"task":"task1", "description":"description"}' -H "Content-Type: application/json" -X POST http://localhost:8080/restapi/api/todos

GET curl http://localhost:8080/restapi/api/todos

PUT curl -d '{"task":"task2", "description":"description2"}' -H "Content-Type: application/json" -X PUT http://localhost:8080/restapi/api/todos/{id}

DELETE curl -X "DELETE" http://localhost:8080/restapi/api/todos/{id}

About

TomEE Java EE CRUD Rest Starter Project

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages