Exemple #1
0
  /** 创建Conf */
  public Conf create(Conf conf) {
    cache.clear();
    Assert.notNull(conf, "'conf' must be not null");
    trimConf(conf);
    initDefaultValuesForCreate(conf);
    new ConfChecker().checkCreateConf(conf);

    confDao.insert(conf);
    return conf;
  }