https://github.com/hennyfeliz/spring-boot-articles-crud
Simple crud for handling and administration of articles with database and all the services of the CRUD concept.
https://github.com/hennyfeliz/spring-boot-articles-crud
Last synced: 2 months ago
JSON representation
Simple crud for handling and administration of articles with database and all the services of the CRUD concept.
- Host: GitHub
- URL: https://github.com/hennyfeliz/spring-boot-articles-crud
- Owner: hennyfeliz
- Created: 2022-08-14T18:28:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-14T20:05:15.000Z (almost 3 years ago)
- Last Synced: 2025-01-27T10:43:40.959Z (4 months ago)
- Language: Java
- Size: 64.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring boot articles crud
Simple crud for handling and administration of articles with database and all the services of the CRUD concept.
Using Maven Command: Download the project source code. Go to the root folder of the project using command prompt and run the command.
`mvn spring-boot:run`### methods of use [you can use Postman to try it]
1. Create :
HTTP Method: POST, URL: /user/article
```
POST - http://localhost:8080/user/article
```2. Read :
HTTP Method: GET, URL: /user/article/{id}
HTTP Method: GET, URL: /user/articles
```
GET - http://localhost:8080/user/article/2
GET - http://localhost:8080/user/articles
```3. Update :
HTTP Method: PUT, URL: /user/article
```
PUT - http://localhost:8080/user/article
```4. Delete :
HTTP Method: DELETE, URL: /user/article/{id}
```
DELETE - http://localhost:8080/user/article/3
```