show/hide this revision's text 2 Minor edit: grammar/spelling/case/punctation/etc.

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.

show/hide this revision's text 1

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 errors, rather than a the general Execption 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"

Better yet....handle the error in the code without necessarily making to the catch block.

    Post Made Community Wiki by Community