在咱們的Springboot項目——studentsystem中使用flyway進行數據庫版本控制。咱們的springboot項目採用gradle管理。 java
studentsystem項目地址:https://github.com/zjgirl/Spr...
flyway配置參考地址:https://blog.waterstrong.me/f...mysql
配置過程很簡單,只須要在build.gradle中添加配置便可:git
//引入配件 plugins { id"org.flywaydb.flyway"version"4.0.3" } //配置flyway properties flyway { url = jdbc:h2:./.tmp/testdb user = sa password = } //添加mysql依賴 dependencies { compilegroup:'mysql',name:'mysql-connector-java',version:'8.0.11' }
flyway默認執行的sql腳本路徑是resources/db/migration,.sql腳本以Vx__xxx_xxx_xxx.sql的方式命名。配置完成後,執行./gradlew tasks能夠看到可用的命令,執行./gradlew flywayMigrate能夠執行sql腳本。github
注意:按理來講,build項目應該會自動執行flyway,可是咱們這裏居然不能自動執行!!!不知道什麼緣由。。。。。還有,它沒法在非空數據庫中遷移表,即便在application.properties中設置了spring.flyway.baseline-on-migrate=true。很奇怪!!!spring
另外,在配置過程當中遇到了一些奇葩的錯:sql
一、mysql數據庫的密碼設置的有問題,報錯caching_sha2_password;緣由是在mysql8以前的版本使用的密碼加密規則是mysql_native_password,可是在mysql8則是caching_sha2_password,能夠重設密碼解決:數據庫
create user 'root'@'localhost' identified with mysql_native_password by 'your password'; FLUSH PRIVILEGES;
二、‘query_cache_size’的錯誤:這個是因爲依賴的mysql版本太老了,mysql-connector-java的版本仍是6.0.6,須要升級版本到8.0.11 ,這個報錯就不存在了。springboot