springboot集成flyway自动创表的详细配置
作者:小诺大人
Flayway是一款数据库版本控制管理工具,,支持数据库版本自动升级,Migrations可以写成sql脚本,也可以写在java代码里;不仅支持Command Line和java api ,也支持Build构建工具和Spring boot,也可以在分布式环境下能够安全可靠安全地升级数据库,同时也支持失败恢复。
Flyway最核心的就是用于记录所有版本演化和状态的MetaData表,Flyway首次启动会创建默认名为SCHEMA_VERSION的元素局表。 表中保存了版本,描述,要执行的sql脚本等;
在ruoyi-admin这个module里面添加flyway依赖
<dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> </dependency> <!-- 不是必须的 --> <build> <plugins> <plugin> <groupId>org.flywaydb</groupId> <artifactId>flyway-maven-plugin</artifactId> <version>5.2.1</version> </plugin> </plugins> </build>
yml 配置flyway
spring: # 配置flyway数据版本管理 flyway: enabled: true baseline-on-migrate: true clean-on-validation-error: false sql-migration-prefix: V sql-migration-suffixes: .sql locations: classpath:db/migration/mysql
配置sql脚本
在若依项目中的sql目录下有两个初始化sql脚本,在ruoyi-admin模块下的"resources/db/migration/mysql
",命名为:V
x.x.x__
xxx.sql
数据库文件。
一般的springboot项目进行到这里,flyway配置就完成了,不过ruoyi项目到这里启动的话,还是会报错,主要是有三个地方用到了@PostConstruct
注解,系统需要从数据库中加载配置信息,并且是构造bean后就执行,此时flaway的数据库配置加载还没执行,如果是第一次执行项目的话,数据库都还没有表结构信息,所以会报错。
直接改若依项目项目启动是加载到缓存的配置的这三个地方的加载时机就行了。
首先,注释掉三个地方的配置加载。
ruoyi-system
中com.ruoyi.system.service.impl.SysConfigServiceImpl
的参数缓存配置
ruoyi-system
中com.ruoyi.system.service.impl.SysDictTypeServiceImpl
的字典信息缓存配置
ruoyi-quartz
中com.ruoyi.quartz.service.impl.SysJobServiceImpl
的定时任务配置
在ruoyi-system
中新增一个配置类com.ruoyi.system.config.RuntimeConfig
,内容如下,在项目加载完成后flyaway加载完成后再执行这些参数的缓存配置。
import org.quartz.Scheduler; import org.quartz.SchedulerException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationListener; import org.springframework.context.event.ContextRefreshedEvent; import org.springframework.stereotype.Component; import java.util.List; /** * * @author: 云诺 * @date: 2021/6/25 * @description: 将项目启动后flyway创建好表加载到缓存 */ @Component public class RuntimeConfig implements ApplicationListener<ContextRefreshedEvent> { private final static Logger LOGGER = LoggerFactory.getLogger(RuntimeConfig.class); @Autowired private SysConfigMapper configMapper; @Autowired private SysDictTypeMapper dictTypeMapper; @Autowired private SysDictDataMapper dictDataMapper; @Autowired private Scheduler scheduler; @Autowired private SysJobMapper jobMapper; /** * 项目启动时,初始化参数 */ @Override public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) { LOGGER.info("init Param ..."); this.initParam(); LOGGER.info("init dict ..."); this.initDict(); try { LOGGER.info("init job ..."); this.initJob(); } catch (SchedulerException e) { e.printStackTrace(); } catch (TaskException e) { e.printStackTrace(); } } /** * 初始化定时任务信息到缓存 * * @throws SchedulerException * @throws TaskException */ public void initJob() throws SchedulerException, TaskException { scheduler.clear(); List<SysJob> jobList = jobMapper.selectJobAll(); for (SysJob job : jobList) { ScheduleUtils.createScheduleJob(scheduler, job); } } /** * 初始化参数到缓存 */ public void initParam() { List<SysConfig> configsList = configMapper.selectConfigList(new SysConfig()); for (SysConfig config : configsList) { CacheUtils.put(getCacheName(), getCacheKey(config.getConfigKey()), config.getConfigValue()); } } /** * 初始化字典到缓存 */ public void initDict() { List<SysDictType> dictTypeList = dictTypeMapper.selectDictTypeAll(); for (SysDictType dictType : dictTypeList) { List<SysDictData> dictDatas = dictDataMapper.selectDictDataByType(dictType.getDictType()); DictUtils.setDictCache(dictType.getDictType(), dictDatas); } } /** * 设置cache key * * @param configKey 参数键 * @return 缓存键key */ private String getCacheKey(String configKey) { return Constants.SYS_CONFIG_KEY + configKey; } /** * 获取cache name * * @return 缓存名 */ private String getCacheName() { return Constants.SYS_CONFIG_CACHE; } }
到这里就可以正常启动项目了
以上就是springboot集成flyway自动创表的详细内容,更多关于springboot自动创表的资料请关注脚本之家其它相关文章!
您可能感兴趣的文章:
- SpringBoot使用Flyway进行数据库迁移的实现示例
- SpringBoot使用Flyway进行数据库管理的操作方法
- SpringBoot项目集成Flyway详细过程
- SpringBoot整合flyway实现自动创建表的方法
- SpringBoot集成Flyway进行数据库版本迁移管理的步骤
- SpringBoot使用flyway初始化数据库
- SpringBoot整合flyway实现步骤解析
- Flyway详解及Springboot集成Flyway的详细教程
- SpringBoot项目集成Flyway进行数据库版本控制的详细教程
- SpringBoot整合Flyway的方法(数据库版本迁移工具)
- springboot配置flyway(入门级别教程)