/javaFxUniversityPortal

Student,Course and Staff management system with javaFx for universities

Primary LanguageJavaApache License 2.0Apache-2.0

javaFxUniversityPortal

Build Status DeepScan grade

Student,Course and Staff management system example for university with javaFx and MongoDb

This is the updated readme To run this project you need gradle 4.4 or higher and mongodb.

Setup database

To change database connection to your configurations edit these line in com.ultimatex.nsbm.util.MorphiaHelper.java

datastore = morphia.createDatastore(new MongoClient(), "morphia_test"); //change database name if you want

//To have different mongoClient other than default use 
// new MongoClient(new MongoClientURI("mongodb://localhost:27017"));
//and replace with new MongoClient()

Run project

gradle run or gradlew run on linux or gradle.bat run in Windows

Run tests

gradle test or gradlew test on linux or gradle.bat test in Windows

a