Skip to content
Snippets Groups Projects
Commit 991b99ed authored by Martin Mojžiš's avatar Martin Mojžiš
Browse files

Merge branch 'develop' into 'account-query-develop'

Develop into account query

See merge request xpitak/PA165-Banking-System!8
parents 107de730 20a86142
No related branches found
No related tags found
No related merge requests found
CREATE SCHEMA IF NOT EXISTS bank_user;
CREATE USER "ACC_USER" WITH PASSWORD 'userAccPasswd';
ALTER ROLE "ACC_USER" SET SEARCH_PATH TO bank_user;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA bank_user TO "ACC_USER";
CREATE SCHEMA IF NOT EXISTS bank_account;
CREATE USER "ACC_ACCOUNT" WITH PASSWORD 'accountAccPasswd';
ALTER ROLE "ACC_ACCOUNT" SET SEARCH_PATH TO bank_account;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA bank_account TO "ACC_ACCOUNT";
CREATE SCHEMA IF NOT EXISTS bank_transaction;
CREATE USER "ACC_TRANSACTION" WITH PASSWORD 'transactionAccPasswd';
GRANT ALL PRIVILEGES ON SCHEMA bank_transaction TO "ACC_TRANSACTION";
ALTER ROLE "ACC_TRANSACTION" SET SEARCH_PATH TO bank_transaction;
SET ROLE "ACC_ACCOUNT";
SET SEARCH_PATH TO bank_account;
-- CREATE TABLES
SET ROLE "ACC_TRANSACTION";
SET SEARCH_PATH TO bank_transaction;
-- CREATE TABLES
CREATE TABLE IF NOT EXISTS proc_transaction
(
proc_uuid UUID PRIMARY KEY,
acc_source VARCHAR(255),
acc_target VARCHAR(255),
type VARCHAR(255),
amount DECIMAL,
curr_code VARCHAR(255),
detail_msg VARCHAR(255)
);
SET ROLE "ACC_USER";
SET SEARCH_PATH TO bank_user;
-- CREATE TABLES
SET SEARCH_PATH TO bank_account;
-- INSERT starting data
\ No newline at end of file
SET SEARCH_PATH TO bank_transaction;
-- INSERT starting data
INSERT INTO proc_transaction (proc_uuid, acc_source, acc_target, type, amount, curr_code, detail_msg)
VALUES ('00000000-0000-0000-0000-000000000001', '123456789', '987654321', 'TRANSFER', 100.00, 'USD', 'Dummy transfer 1'),
('00000000-0000-0000-0000-000000000002', '987654321', '123456789', 'DEPOSIT', 200.00, 'EUR', 'Dummy deposit 1'),
('00000000-0000-0000-0000-000000000003', '111111111', '222222222', 'WITHDRAWAL', 300.00, 'GBP', 'Dummy withdrawal 1'),
('00000000-0000-0000-0000-000000000004', '333333333', '444444444', 'TRANSFER', 400.00, 'CAD', 'Dummy transfer 2'),
('00000000-0000-0000-0000-000000000005', '555555555', '666666666', 'DEPOSIT', 500.00, 'AUD', 'Dummy deposit 2');
SET SEARCH_PATH TO bank_user;
-- INSERT starting data
\ No newline at end of file
created just to commit the '.docker' directory.
Remove after other files have been added into the directory.
\ No newline at end of file
......@@ -13,7 +13,7 @@ which can report total and average (per account) transactions (deposits, withdra
## Use case diagram
<img src="./useCaseDiagram.png" width="800">
## Artefact Structure
## Artifact Structure
| Service | Specification |
|-----------------------------|-----------------------------------------------------------------------------------------------------------------------|
......@@ -25,7 +25,7 @@ which can report total and average (per account) transactions (deposits, withdra
## Module Architecture
Each service is implemented as a separate maven artifact consisting of a Spring-boot application. Within each project
we used the principles of `Hexagonal architecture` and `DDD`, where the domain itself consists of only pure Java classes,
we used the principles of `Hexagonal architecture`, where the domain itself consists of only pure Java classes,
with no technological dependencies. By using such separation, we nicely created an extra separated layer on top of the
traditional `Controller, Facade, Service and Repository` layers. The main benefit of such separation is visible mainly when
extending new features, implementation of tests and usage of custom abstractions with ease.
......
version: "3.8"
version: "3.9"
name: online-banking
services:
banking-db:
image: "postgres:16.2"
ports:
- "5432:5432"
environment:
- POSTGRES_USER=root
- POSTGRES_PASSWORD=passwd
- POSTGRES_DB=banking
volumes:
- ./.docker/db/scripts:/docker-entrypoint-initdb.d
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment