Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wintersolid/cloudvenderapi
RESTful API using Java and Spring Boot, integrating MySQL for data persistence and performed database management and queries using MySQL Workbench.
https://github.com/wintersolid/cloudvenderapi
api-rest java jpa maven mysql-database spring-boot spring-data
Last synced: about 1 month ago
JSON representation
RESTful API using Java and Spring Boot, integrating MySQL for data persistence and performed database management and queries using MySQL Workbench.
- Host: GitHub
- URL: https://github.com/wintersolid/cloudvenderapi
- Owner: WinterSolid
- Created: 2024-06-15T17:06:39.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-20T15:54:15.000Z (6 months ago)
- Last Synced: 2024-07-20T17:06:02.667Z (6 months ago)
- Topics: api-rest, java, jpa, maven, mysql-database, spring-boot, spring-data
- Language: Java
- Homepage:
- Size: 1.41 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Annotations.md
Awesome Lists containing this project
README
# Annotation:
Ensure that the annotations are used correctly and on the right elements.- @RestController: On a class to indicate that it's a REST controller.
- @RequestMapping: On a class or method to map HTTP requests.
- @GetMapping, @PostMapping, @PutMapping, @DeleteMapping: On methods to map specific HTTP methods.
- @PathVariable: On method parameters to bind URI template variables.
- @RequestBody: On method parameters to bind request bodies.
- @Autowired: On fields, constructors, or methods for dependency injection.
- @ApiOperation, @ApiParam: For Swagger documentation on methods and parameters.