Student Management System.
Setting up and installing this software is easy by just installing Java 14 and MySQL.
Softwares needed:
- Java 14 (JDK 14).
- MySQL.
Installation links of the required softwares:
- JDK 14: https://www.oracle.com/java/technologies/javase/jdk14-archive-downloads.html
- MySQL: https://dev.mysql.com/downloads/
For Windows users: Download JDK 14 and MySQL from the above given download links and install them.
For Ubuntu/Debian users:
-
Install JDK 14 from the above download link for your specific Linux distribution and install it.
-
To install MySQL, run the following command in the terminal:
sudo apt-get install mysql-server
Following the above installation steps for required softwares will set up an environment to run the Student Management System without any hassles.
For Windows users:
-
Create a database named as 'demo' in MySQL.
-
Setup your MySQL credentials in the 'hibernate.cfg.xml' file by changing the 'connection.username' and 'connection.password' fields.
-
Open your command prompt and navigate to the project's directory and run the following command to compile the Java files:
javac -cp "hibernate-jars/*";"jfreechart-jars/*" *.java
-
Run the following command to run the application:
java -cp "hibernate-jars/*";"jfreechart-jars/*";. MainWindow
For Ubuntu/Debian users:
-
Create a database named as 'demo' in MySQL.
-
Setup your MySQL credentials in the 'hibernate.cfg.xml' file by changing the 'connection.username' and 'connection.password' fields.
-
Open your terminal and navigate to the project's directory and run the following command to compile the Java files:
javac -cp "hibernate-jars/*":"jfreechart-jars/*" *.java
-
Run the following command to run the application:
java -cp "hibernate-jars/*":"jfreechart-jars/*":. MainWindow
- Java 14 - GUI for the software.
- MySQL - Database Management System.
Siddhesh Kudtarkar