It's a simple RMI Application which performs CRUD(create, read, update and delete) operations.
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.
- 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
- Java 1.8
- RMI (Remote Method Invocation)
- JDBC
- SQL
-
Compile All Java files
Javac *.java
-
Start RMI registry
start rmiregistry
-
Run Server
java AdderServer
-
Run Client
java AdderClient