https://github.com/mathiasreker/java-mvc-console-app
An example of how to make a console project in Java.
https://github.com/mathiasreker/java-mvc-console-app
Last synced: 4 months ago
JSON representation
An example of how to make a console project in Java.
- Host: GitHub
- URL: https://github.com/mathiasreker/java-mvc-console-app
- Owner: MathiasReker
- Created: 2021-04-14T20:31:03.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-13T06:54:44.000Z (over 6 years ago)
- Last Synced: 2025-02-28T18:43:51.195Z (over 1 year ago)
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Java Console App Template
This repository is an example of how to make a console project in Java. This project implements the `model-view-controller` architecture despite its simplicity in the user interface module (`Console` class). The structure of project is as follows:
* `src`: contains all source code of project.
* `test`: contains all test code of project.
* `com`: contains all company applications.
* `app`: is the source code of application.
* `console`: user interface package (view).
* `controllers`: control package (controller).
* `models`: model package (model).
* `utils`: util package.
* `App.java`: is the main class of application.
* `Index.java`: is the start class of application.
## Class Diagram
This is the class diagram of this project:
