使用mybatis 自动执行脚本
Posted 我在清水河边
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用mybatis 自动执行脚本相关的知识,希望对你有一定的参考价值。
使用mybatis 自动执行脚本
执行步骤
-
添加包
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency>
-
添加 sql执行脚本
脚本建议放在resource
目录下面,方便查找和替换
-
添加脚本初始化类
@Slf4j @Component public class InitLockDataBase implements InitializingBean { @Autowired private DataSource dataSource; private static final String SQL_FILE_NAME = "init.sql"; @Override public void afterPropertiesSet(){ try { var scriptRunner = new ScriptRunner(dataSource.getConnection()); var classPathResource = new ClassPathResource(SQL_FILE_NAME); var reader = new InputStreamReader(classPathResource.getInputStream()); scriptRunner.runScript(reader); } catch (SQLException | IOException e) { log.info("[初始化sql脚本异常] 执行sql脚本异常,请检查",e); throw new IllegalStateException("sql脚本执行异常"); } } }
-
启动项目
注意事项
- 注意连接池的配置,spring默认版本是hikariCP的连接池,对应的application.yml中属性也要做修改
- 注意sql脚本中sql后的
;
,如果未检测到,则认为sql一直未执行完,将会报错. - 本项目使用了jdk15,如果启动不成功请切换对应的jdk版本.
项目地址
以上是关于使用mybatis 自动执行脚本的主要内容,如果未能解决你的问题,请参考以下文章