<pre name="code" class="java">
I am geting the server status(running or stoped) of mongodb.While stoping the server i am getting the MongoTimeoutException i was handled that exception in catch block.
catch(MongoTimeoutException)
{
model = new ModelAndView("databaseStatus","status","STOPED");
}
or
catch(Exception e)
{
model = new ModelAndView("databaseStatus","status","STOPED");
}
complete controller code
@RequestMapping(value ="/databaseStatus", method = RequestMethod.GET)
public ModelAndView dbServerStatus(HttpServletRequest request) throws UnknownHostException {
ModelAndView model =null;
try
{
log.info("database running");
Mongo mongo = new Mongo("localhost", 27017);
DB db = mongo.getDB("test");
CommandResult status= db.command("ServerStatus") ;
model = new ModelAndView("databaseStatus","status","RUNNING");
}
catch(Exception e)
{
model = new ModelAndView("databaseStatus","status","STOPED");
}
return model;
}
</pre>
No comments:
Post a Comment