| 
 | 1 | +# CRUD-operation-in-java-using-mongodb-and-javafx  | 
 | 2 | + | 
 | 3 | +This project walks you through a step-by-step process of creating a basic CRUD application using mongodb and javafx  | 
 | 4 | + | 
 | 5 | +For this project we are going to make use of three tools;  | 
 | 6 | + | 
 | 7 | +mongodb server  | 
 | 8 | + | 
 | 9 | +mongodb-java-driver 3.5   | 
 | 10 | + | 
 | 11 | +scene builder  | 
 | 12 | + | 
 | 13 | +if you have these tools installed on your system, you can go straight to clone and open this project on your system  | 
 | 14 | + | 
 | 15 | +first, we are going to set up our mongodb server. Go to the link below and download mongodb   | 
 | 16 | + | 
 | 17 | +https://www.mongodb.com/download-center#community  | 
 | 18 | + | 
 | 19 | +Now, go to the link below and follow the steps to configure and start your mongodb service  | 
 | 20 | + | 
 | 21 | +For windows,  | 
 | 22 | + | 
 | 23 | +https://docs.mongodb.com/manual/tutorial/install-mongodb-on-windows/  | 
 | 24 | + | 
 | 25 | +For linux,  | 
 | 26 | + | 
 | 27 | +https://docs.mongodb.com/manual/administration/install-on-linux/  | 
 | 28 | + | 
 | 29 | +For mac,  | 
 | 30 | + | 
 | 31 | +https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/  | 
 | 32 | + | 
 | 33 | +Now that we have mongodb up and running, lets create our project.   | 
 | 34 | + | 
 | 35 | +I will be making use of javafx, so we can create a javafx project and set it up.  | 
 | 36 | + | 
 | 37 | +Less i forget we will need scene builder to create our awesome GUI for the project. so if u don't have scene builder on your system, go to the link below and download it,   | 
 | 38 | + | 
 | 39 | +http://gluonhq.com/products/scene-builder/  | 
 | 40 | + | 
 | 41 | +After you download it, integrate it to your IDE...  | 
 | 42 | + | 
 | 43 | +Go to http://code.makery.ch/library/javafx-8-tutorial/part1/ if you are using eclipse,   | 
 | 44 | + | 
 | 45 | +Go to https://www.jetbrains.com/help/idea/opening-fxml-files-in-javafx-scene-builder.html if you are using intellij,  | 
 | 46 | + | 
 | 47 | +Go to https://docs.oracle.com/javase/8/scene-builder-2/work-with-java-ides/sb-with-nb.htm for netbeans   | 
 | 48 | + | 
 | 49 | +we need a driver in our java application that will be able to communicate with the mongodb server right from our java application  | 
 | 50 | + | 
 | 51 | +there are different parkages out there but i will be using mongo-java-driver 3.5.  | 
 | 52 | + | 
 | 53 | +Go to the link below to download it,  | 
 | 54 | + | 
 | 55 | +https://jar-download.com/?search_box=mongo-java-driver  | 
 | 56 | + | 
 | 57 | +what you need to do now is to add the mongo-java-driver 3.5 to your java library  | 
0 commit comments