{"id":21445277,"url":"https://github.com/bunu23/bank-app","last_synced_at":"2026-02-28T14:31:38.233Z","repository":{"id":237316671,"uuid":"777474914","full_name":"bunu23/bank-app","owner":"bunu23","description":"Java-based project developed using the Spring Framework to provide various functionalities related to account management, customer interactions, messaging, and currency conversion. It leverages Spring Boot for simplified setup and configuration.","archived":false,"fork":false,"pushed_at":"2025-02-24T00:07:47.000Z","size":243,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T08:58:36.428Z","etag":null,"topics":["aop","datajpa","grafana","hibernate-jpa","java","jms","json","kafka","mvc","mysql","prometheus","rest-api","spring","spring-boot","springscheduling"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bunu23.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-25T23:14:14.000Z","updated_at":"2025-02-24T00:07:50.000Z","dependencies_parsed_at":"2024-04-30T21:11:58.950Z","dependency_job_id":"71c1c87f-d370-415e-afea-e5a30238c864","html_url":"https://github.com/bunu23/bank-app","commit_stats":null,"previous_names":["bunu23/bank-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bunu23/bank-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunu23%2Fbank-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunu23%2Fbank-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunu23%2Fbank-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunu23%2Fbank-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bunu23","download_url":"https://codeload.github.com/bunu23/bank-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunu23%2Fbank-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29937391,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aop","datajpa","grafana","hibernate-jpa","java","jms","json","kafka","mvc","mysql","prometheus","rest-api","spring","spring-boot","springscheduling"],"created_at":"2024-11-23T02:25:24.922Z","updated_at":"2026-02-28T14:31:38.209Z","avatar_url":"https://github.com/bunu23.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Banking Application\n\n## Overview\n\nThe banking application is a Java-based project developed using the Spring Framework to provide various functionalities related to account management, customer interactions, messaging, and currency conversion. It leverages Spring Boot for simplified setup and configuration.\n\n![Bank Application](domain.png)\n\n---\n\n## Project Structure\n\n```bash\nbank\n├── bank.domain\n│   ├── Account.java\n│   ├── AccountEntry.java\n│   └── Customer.java\n├── bank.dao\n│   ├── IAccountDAO.java\n│   └── IAccountChangeEventDAO.java\n├── bank.service\n│   ├── AccountService.java\n│   ├── BankStatementPrinter.java\n│   ├── CurrencyConverter.java\n│   ├── CustomerAdapter.java\n│   ├── EventEmailer.java\n│   ├── EventPersistenceSaver.java\n│   ├── IAccountService.java\n│   └── ICurrencyConverter.java\n├── bank.integration\n│   ├── email\n│   │   └── EmailSender.java\n│   └── jms\n│       ├── JMSSender.java\n│       └── IJMSSender.java\n├── bank.logging\n│   ├── ILogger.java\n│   └── Logger.java\n├── bank.web\n│   ├── AccountController.java\n│   └── Accounts.java\n├── bank.aop\n│   ├── DaoLoggingAdvice.java\n│   ├── JmsLoggingAdvice.java\n│   └── ServiceTimerAdvice.java\n├── bank.messaging\n│   ├── AccountInstruction.java\n│   └── AccountListener.java\n├── bank.service.messaging\n│   ├── EventEmailer.java\n│   └── EventPersistenceSaver.java\n└── Application.java\n```\n\n## Functionality Overview\n\nThe banking application offers the following key functionalities:\n\n1. **Account Management**: \n   - Creation, retrieval, and listing of accounts.\n   - Operations for deposits, withdrawals, and fund transfers.\n   - Currency conversion capabilities.\n\n2. **Customer Interaction**: \n   - Creation and retrieval of customer information.\n\n3. **Messaging**: \n   - Sending email notifications for account events.\n   - Receiving and processing messages from Kafka.\n\n4. **Logging and Monitoring**: \n   - Logging of method calls, JMS messages, and account change events for monitoring purposes.\n\n## Technologies Used\n\n- **Programming Language**: Java\n- **Frameworks**: Spring Boot, Spring Data JPA, Spring Web MVC\n- **Messaging**: JMS, Apache Kafka\n- **ORM**: Hibernate\n- **Database**: MySQL\n- **Build Tool**: Maven\n- **Data Formats**: JSON\n- **Logging**: Log4j\n- **Testing**: JUnit\n\n## How to Run\n\n### Prerequisites\n\n* Java 8 (or higher): Make sure Java is installed and configured on your system.\n* Maven: Install Maven for building the project.\n* MySQL Database: Ensure you have MySQL installed and create a database for the application.\n* Kafka and JMS: If you plan to test messaging functionalities, ensure you have a running Apache Kafka cluster and JMS provider.\n* Spring Boot Configuration: Check your application properties file (usually located in src/main/resources/application.properties) to configure the database, messaging, and other required parameters.\n  \n### Setup Instructions\n\n1. **Clone the Repository:**\n   ```bash\n   git clone https://github.com/bunu23/bank-app.git\n   cd bank-app\n   ```\n\n2. **Configure the Database:**\n   - Create a MySQL database (for example, `bank_db`).\n   - Update the `application.properties` file located in `src/main/resources` with your MySQL credentials and connection URL:\n     ```properties\n     spring.datasource.url=jdbc:mysql://localhost:3306/bank_db?useSSL=false\u0026serverTimezone=UTC\n     spring.datasource.username=your_username\n     spring.datasource.password=your_password\n     spring.jpa.hibernate.ddl-auto=update\n     ```\n\n3. **Build the Project:**\n   - Use Maven to compile and package the application:\n     ```bash\n     mvn clean install\n     ```\n   - This command compiles the code, runs tests, and packages the application into a JAR file.\n\n4. **Run the Application:**\n   - You can run the application using the Spring Boot Maven plugin:\n     ```bash\n     mvn spring-boot:run\n     ```\n   - Alternatively, run the packaged JAR file:\n     ```bash\n     java -jar target/your-jar-file-name.jar\n     ```\n\n5. **Access the Application:**\n   - Once the application is running, access the web endpoints (such as for account management) by navigating to:\n     ```\n     http://localhost:8080\n     ```\n\n## Additional Notes\n\n- **Messaging Configuration:** Ensure that your JMS and Apache Kafka brokers are configured and running if you plan to test messaging functionalities.\n- **Logging:** The application uses Log4j for logging. Configure logging levels and appenders as needed in the `log4j.properties` file.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbunu23%2Fbank-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbunu23%2Fbank-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbunu23%2Fbank-app/lists"}