Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 991 Bytes

File metadata and controls

46 lines (33 loc) · 991 Bytes

Student-Database-CRUD-using-Java-RMI

It's a simple RMI Application which performs CRUD(create, read, update and delete) operations.

What is RMI ?

RMI stands for Remote Method Invocation. It is a mechanism that allows to access on object running on a certain JVM from another different JVM. Using RMI we can build distributed applications.

RMI Application Architechture

RMI Architechture

Features

  • Create a Student Record in Database
  • Read a Student Record from the Databse
  • Upade a Student Record in Database
  • Delete a Student Record from the Database

Technologies Uesd

  • Java 1.8
  • RMI (Remote Method Invocation)
  • JDBC
  • SQL

How to Execute the Application ?

  1. Compile All Java files

    Javac *.java
    
  2. Start RMI registry

     start rmiregistry
    
  3. Run Server

    java AdderServer
    
  4. Run Client

    java AdderClient