https://github.com/backbase/backend-live-coding-interview-1
https://github.com/backbase/backend-live-coding-interview-1
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/backbase/backend-live-coding-interview-1
- Owner: Backbase
- Created: 2022-08-19T09:44:16.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-11T08:39:25.000Z (over 3 years ago)
- Last Synced: 2025-06-30T14:54:21.807Z (7 months ago)
- Language: Java
- Size: 16.6 KB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transaction Service
This is a spring application which persists financial transactions (like when you buy something in the store and pay it
using your card) for the bank customers.
It uses maven, spring-boot and spring-web.
It has one [REST controller](src/main/java/com/backbase/transaction/rest/TransactionController.java) and one endpoint
for retrieving the customer's transactions using the `accountHolderId`.
It uses a JpaRepository to query the H2 database.
# Compile and test
You can use this command to build the and test the project:
`mvn clean install`