Skip to content

Using Spring Boot and Java 11 to create a complete REST API. I am using PostgreSQL as the relational database and Spring JdbcTemplate for interacting with that. Apart from this, I am adding authentication using JWT (JSON Web Tokens).

Notifications You must be signed in to change notification settings

MirjalolRakhmonov/Expense-Tracker-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Expense-Tracker-API

Using Spring Boot and Java to create a complete REST API. I am using PostgreSQL as the relational database and Spring JdbcTemplate for interacting with that. Apart from this, I am adding authentication using JWT (JSON Web Tokens).

CRUD OPERATIONS

USERS

@RequestMapping("/api/users")

  • @PostMapping("/login")
  • @PostMapping("/register")

CATEGORIES

  • @RequestMapping("/api/categories")

  • @GetMapping("")

  • @GetMapping("/{categoryId}")

  • @PostMapping("")

  • @PutMapping("/{categoryId}")

  • @DeleteMapping("/{categoryId}")

Transactions

  • @RequestMapping("/api/categories/{categoryId}/transactions")

  • @GetMapping("")

  • @GetMapping("{transactionId}")

  • @PostMapping("")

  • @PutMapping("/{transactionId}")

  • @DeleteMapping("/{transactionId}")

About

Using Spring Boot and Java 11 to create a complete REST API. I am using PostgreSQL as the relational database and Spring JdbcTemplate for interacting with that. Apart from this, I am adding authentication using JWT (JSON Web Tokens).

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages