Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alex-cultrera/bank-transaction-history-viewer
utilized Spring MVC and Thymeleaf for this bank transaction history viewer. The Repository and Service classes deserialize, populate, and sort transaction data from a binary file.
https://github.com/alex-cultrera/bank-transaction-history-viewer
controller css deserialize fileinputstream html java model modelmap objectinputstream pathvariable spring-mvc thymeleaf view
Last synced: about 1 month ago
JSON representation
utilized Spring MVC and Thymeleaf for this bank transaction history viewer. The Repository and Service classes deserialize, populate, and sort transaction data from a binary file.
- Host: GitHub
- URL: https://github.com/alex-cultrera/bank-transaction-history-viewer
- Owner: Alex-Cultrera
- Created: 2024-08-15T13:55:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T16:43:43.000Z (3 months ago)
- Last Synced: 2024-11-16T22:35:21.581Z (about 1 month ago)
- Topics: controller, css, deserialize, fileinputstream, html, java, model, modelmap, objectinputstream, pathvariable, spring-mvc, thymeleaf, view
- Language: Java
- Homepage:
- Size: 333 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bank Transaction History Viewer
Project where I created an online banking transaction history viewer using Spring MVC where user can click into each transaction to view a new page displaying the full details of that transaction, and from there the user can click back to view the Transaction History page again
## Troubleshooting
This project is entirely dependent upon a _binary_ file cleverly named `doNotTouch`. If this file is moved, renamed, or even changed, then `Transaction.java` will not work and the project will fail to run as intended.
You can always test this by running the unit test provided. If it fails to run green then the file may have been moved or renamed. This unit test will not fail, however, if you change the internals of this binary file.
The rest of this project should conform to your normal expectations for any Spring Boot web project.