Java Database Connection Class-JDBC-Easier In order to connect to a database it is required that the connection url, username, password.So without specifying it in the connection class we can specify it in a new properties file.This technique will reduce the recompilation of the jdbc class whenever a database change or credentials change needed.Because we can just change it in the configuration without changing the content of jdbc connection class. So First Create a properties file by renaming the extension of text file to .properties and add the contents as mentioned below and save it to the source folder. db.properties --------------------------------------- driver= your driver name url= your url name username= your database username password= your database password ---------------------------------------------------- JdbcConnector.class --------------------------------------- package com.anandhu.jdbc; import java.io.FileInputStream; import ...