當前位置: 首頁>>代碼示例>>Java>>正文


Java EmptyResultDataAccessException.printStackTrace方法代碼示例

本文整理匯總了Java中org.springframework.dao.EmptyResultDataAccessException.printStackTrace方法的典型用法代碼示例。如果您正苦於以下問題:Java EmptyResultDataAccessException.printStackTrace方法的具體用法?Java EmptyResultDataAccessException.printStackTrace怎麽用?Java EmptyResultDataAccessException.printStackTrace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.dao.EmptyResultDataAccessException的用法示例。


在下文中一共展示了EmptyResultDataAccessException.printStackTrace方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getDatasetDependentsById

import org.springframework.dao.EmptyResultDataAccessException; //導入方法依賴的package包/類
public static Result getDatasetDependentsById(Long datasetId)
    throws SQLException {
  ObjectNode resultJson = Json.newObject();
  if (datasetId > 0) {
    try {
      List<Map<String, Object>> dependents = DatasetDao.getDatasetDependents(datasetId);
      resultJson.put("return_code", 200);
      resultJson.set("dependents", Json.toJson(dependents));
    } catch (EmptyResultDataAccessException e) {
      e.printStackTrace();
      resultJson.put("return_code", 404);
      resultJson.put("error_message", "no dependent datasets can be found!");
    }
    return ok(resultJson);
  }
  // if no parameter, return an error message
  resultJson.put("return_code", 400);
  resultJson.put("error_message", "Dataset Id is not provided or invalid");
  return ok(resultJson);
}
 
開發者ID:thomas-young-2013,項目名稱:wherehowsX,代碼行數:21,代碼來源:DatasetController.java

示例2: getDatasetDependentsByUri

import org.springframework.dao.EmptyResultDataAccessException; //導入方法依賴的package包/類
public static Result getDatasetDependentsByUri(String datasetUri)
    throws SQLException {
  /* expect
   * hive:///db_name.table_name
   * hive:///db_name/table_name
   * dalids:///db_name.table_name
   * dalids:///db_name/table_name
   * hdfs:///dir1/dir2/dir3/dir4
   * teradata:///db_name/table_name
   */
  ObjectNode resultJson = Json.newObject();
  String[] uri_parts = datasetUri.split(":");
  if (uri_parts.length != 2) {
    resultJson.put("return_code", 400);
    resultJson.put("error_message", "Invalid dataset URI");
    return ok(resultJson);
  }
  String dataset_type = uri_parts[0];
  String dataset_path = uri_parts[1].substring(2);  // start from the 3rd slash
  if (dataset_path.indexOf(".") > 0) {
    dataset_path.replace(".", "/");
  }

  if (dataset_path != null) {
    try {
      List<Map<String, Object>> dependents = DatasetDao.getDatasetDependents(dataset_type, dataset_path);
      resultJson.put("return_code", 200);
      resultJson.set("dependents", Json.toJson(dependents));
    } catch (EmptyResultDataAccessException e) {
      e.printStackTrace();
      resultJson.put("return_code", 404);
      resultJson.put("error_message", "No dependent dataset can be found!");
    }
    return ok(resultJson);
  }

  // if no parameter, return an error message
  resultJson.put("return_code", 400);
  resultJson.put("error_message", "No parameter provided");
  return ok(resultJson);
}
 
開發者ID:thomas-young-2013,項目名稱:wherehowsX,代碼行數:42,代碼來源:DatasetController.java


注:本文中的org.springframework.dao.EmptyResultDataAccessException.printStackTrace方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。