Пример #1
0
  /**
   * 用于加载学科列表,地震目录列表,震相列表
   *
   * @return
   */
  public String index() {

    if (catalogs == null) { // 查询地震目录
      catalogs = catalogManager.getCat();
      logger.info("地震目录数:{}", catalogs.size());
    }
    if (phases == null) { // 查询震相
      phases = catalogManager.getPhaseCat();
    }
    if (seeds == null) { // 查询事件波形
      seeds = catalogManager.getSeedCat();
    }
    return SUCCESS;
  }