Flight Management System(FMS) is a Java-based application designed to manage flight records and employee details related to flight for companies. It provides a user-friendly GUI along with necessary CRUD operations for employee, manager and administrator.
- Clone the Repository.
- Open the Repository in Intellij IDEA.
- Download and install MySQL and MySQL Connector/J.
- Set the JDBC path as an environment variable on your PC.
- Set up the Intellij IDEA environment:
- Navigate to File > Project Structure > Libraries.
- Click "+" to add the path of mysql-connector-j-8.3.0.
- Navigate to File > Settings > Plugins.
- Search for and install the "Database Navigator" Plugin.
- Connect the local MySQL database with the Database Navigator Plugin and verify the connection.
- Add all the tables in the MySQL database based on the information provided in the
database.txt
file. - Update the
JdbcConnector.java
file with your JDBC URL, username, and password for MySQL. - Run the
FlightManagementSystem.java
file by clicking on the Run button or pressingCtrl + F5
.