【Lazy ORM 自动化DDL】1.2.0-JDK17 稳定版发布
版本:1.2.0-JDK7 稳定版发布 安装 top.wu2020 wu-database-lazy-starter ${最新版本} 使用 spring boot为例子 启动类添加注解@LazyScan @LazyScan(scanBasePackages = { "com.wu.smart.acw.core.domain.uo", // "com.wu.framework.inner.lazy.example.**.entity", "com.wu.smart.acw.server.**.entity" }) public class AcwServerApplication { public static void main(String[] args) { SpringApplication.run(AcwServerApplication.class, args); } } 配置文件 spring: lazy: ddl-configure: ddl-auto: update #NONE 空的不做任何操作、UPDATE 更新操作...