Java

Registration Form using Java MongoDb Database

In this tutorials will  teach you Java connect with MongoDb Database with Swing Application.MongoDb is a NOSQLdatabase.how to do the simple registation form connect with MongoDb Database teach step by step here.How  to connect java in to MongoDb Database.

Establish the database Connection with Java and MongoDb Database

First Install the mongodb and robo mongo i attched the video link below.

If you don’t have a idea about MongoDb Database . it is simple to learn i have attached the video link below.

 

 

After watch above video links i hope now you have clear idea about mongodb.

Lets do the Registration form

Establish the database Connection

mongo = new MongoClient(“localhost”,27017);   This is port where your robo mongodb is connected

dbconnection = mongo.getDatabase(“school”);  This is database name

collection= dbconnection.getCollection(“records”);  This is a table name

    MongoClient mongo;
    MongoDatabase dbconnection;
    MongoCollection<org.bson.Document>  collection;
   
    public void Connect()
    {    
        mongo = new MongoClient("localhost",27017);
        dbconnection = mongo.getDatabase("school");
        collection= dbconnection.getCollection("records");
        System.out.println("connect");
  
    }

after done the connet() method call inside the constructor of the class

   public Registation() {
        initComponents();
        Connect();
    }

Paste the Code Inside the Save Button

Document d =new Document("name",txtName.getText());
d.append("age",txtAge.getText());  
d.append("course",txtCourse.getText());  
collection.insertOne(d);
JOptionPane.showMessageDialog(this, "Inserted Successfully");

i have attached the video link below. which will do this tutorials step by step.

 

 

 

admin

Recent Posts

Employee Working Hours Calculation System using C#.net

Initialize the employee number, Hourswork,and Hoursrate to calculate a grosswage use the following condition. if…

1 week ago

Java Payroll System Calculate Employee Overtime

Act as a Java developer to create a program that calculates the gross wage for…

1 week ago

Employee Working Hours Calculation System using Java

Initialize the employee number, Hourswork,and Hoursrate to calculate a grosswage use the following condition. if…

1 week ago

Laravel 11 School Management System

In this tutorial, we will teach you how to create a simple school management system…

2 weeks ago

How to Make Admin Panel Using React MUI

I have design the Admin Basic templete using React MUI Design Admin Dashboard and Login.Here…

4 weeks ago

Install Laravel Breeze for Authentication Using Laravel 11

In this tutorial ,i am to going teach the Laravel Breeze.Laravel Breeze provides a simple…

1 month ago