Useless logging....
try {
}
catch (Exception e)
log.error(e.printStackTrace());
}
Instead try to think about what sort of error might occur, and put something useful in the logs. This could be something like, "Properties File Not Found" or "Unable To Connect To Database"
Try to catch different specific errors, rather than a the general Execption exception so that when it fails, the program you wrote won't be immediately blamed. For example, if there is a connection error, put it in plain english, "Database Connection Error"Error".
Better yet....handle the error in the code without necessarily making it to the catch block.
