An open API service indexing awesome lists of open source software.

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

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`