Skip to content

v0.1.4 support java

Latest
Compare
Choose a tag to compare
@chelizichen chelizichen released this 07 Apr 03:12
· 1 commit to master since this release

In this version, three new enumeration constants have been added to confirm the type of service publication, which needs to be configured in simp.yaml or simpProd.yaml. The launcher will execute different publishing logic based on the publishing type.

And it provides release optimization for SpringBoot [link]( https://github.com/chelizichen/ShopServer

在这个版本中,新添加了三个枚举常量 用来确认服务发布的类型,该类型需要在simp.yaml 或 simpProd.yaml 中配置,启动器会根据发布类型执行不同的发布逻辑。
RELEASE_TYPE_GO = "go-http"
RELEASE_TYPE_NODEJS = "node-http"
RELEASE_TYPE_JAVA = "java-http"
server:
type: java-http

并且提供了针对SpringBoot的发布优化link