We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用 spring-boot loader + fatjar 模式打包有如下优势:
ttl-fatjar.jar `-- BOOT-INF/ | `-- lib/ | `-- dep1.jar | `-- dep2.jar | `-- classes/ | `-- <TTL类> `-- ttl/loader `-- <loader相关类>
The text was updated successfully, but these errors were encountered:
依赖无需shade,只需要打包到 BOOT-INF 无需配置 bootstrap classpath 依赖及不导出的类可以在独立的loader中加载,避免应用会意外访问
👍 💖
TTL v3会提供
TTL v3
shade
API
Agent
也可以提供spring-boot loader + fatjar模式依赖
spring-boot loader + fatjar
PS:v3作为大版本升级,可以做不兼容的修改,清理掉不好的设计与实现;当然会提供TTL v2的兼容包。
v3
TTL v2
主代码中可以依赖 kotlin,简化代码并且可以对 Transformlet 提供更好的 dsl
v3会提供Kotlin语言的一等公民支持。
Kotlin
Sorry, something went wrong.
No branches or pull requests
使用 spring-boot loader + fatjar 模式打包有如下优势:
The text was updated successfully, but these errors were encountered: