Beetl 模板引擎 3.15 发布,支持 SpringBoot3
新增发布包beetl-antlr4.5,支持antlr4.5,antlr4.6 新增发布包beetl-antlr4.11,支持antlr4.10,antlr4.11,antlr4.12 SpringBoot3 支持,使用beetl-springboot-starter-jdk17,结合@EnableBeetl支持Beetl模板引擎 @SpringBootApplication @EnableBeetl public class TestSpringBoot3Application { public static void main(String[] args) { SpringApplication.run(TestSpringBootApplication.class, args); } } 调整了POM结构 beetl-core: 核心模块 beetl-ext: 扩展模块 beetl-integration: beetl和各个新框架集成,目前主要是jdk17的springboot3 beetl-classic-integration beetl和各个框架集成,J...

