// Local URL : http://localhost:8080/updateLeaderboardLevel?accountId=test
 @RequestMapping("/updateLeaderboardLevel")
 public String updateLeaderboardLevel(
     @RequestParam(value = "accountId", defaultValue = "0000") String accountId,
     @RequestParam(value = "level", defaultValue = "0000") String level)
     throws SQLException {
   return and.updateLeaderboardLevel(accountId, level);
 }