Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 1.34 KB

RELEASENOTES.md

File metadata and controls

69 lines (48 loc) · 1.34 KB

Release Notes

4.0.0.RELEASE

  • refactor all features package

3.0.0.RELEASE

  • GeDid: Distributed id generator.

    • RedisIdEngine
    • ZookeeperIdEngine
    • UuidEngine
  • Safety Toolkit

  • refactor RedisTemplateX

2.9.RELEASE

  • copy SpringBoot configs
/**
 * App
 *
 * @author Qicz
 */
@SpringBootApplication
@EnableExtension
public class App {

    public static void main(String[] args) throws InterruptedException {
        SpringApplicationX.run(App.class, args);
        SpringApplicationX.applicationInfo();
    }
}
  • use args ccp just copy application configs
java -jar xxx.jar ccp

2.5.RELEASE

  • support Elasticsearch MappingsProperties configuration.
    @PostConstruct
    private void createIndex() throws IOException {
        MappingsProperties mappingsProperties = MappingsProperties.me();
        mappingsProperties.add(MappingsProperty.me().name("id").type("long"));
        mappingsProperties.add(MappingsProperty.me().name("name").textType().analyzer("ik_smart"));
        restHighLevelClientX.createIndex("index_name", null, mappingsProperties);
    }
  • support Elasticsearch RestHighLevelClient(X) saveOrUpdate(Batch) and deleteDocById(s).

2.3-RELEASE

  • support Elasticsearch

1.9-RELEASE

  • feign header cover support
  • feign hystrix concurrency strategy