11 2021 档案

异常
摘要:1. Check syntax #{property|(expression), var1=value1, var2=value2, ...} 记录我的低级错误,,,特地写一下,,,#{username),应该是大括号的,写成了小括号,,,还不易察觉。。。。 2. It's likely that 阅读全文

posted @ 2021-11-29 16:39 jav-a- 阅读(42) 评论(0) 推荐(0)

springboot使用flyway管理数据库
摘要:<!-- 1. 导入依赖 --> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> </dependency> 2.按Flyway的规范创建版本化的SQL脚本。 2.1)在工程的src/ 阅读全文

posted @ 2021-11-29 09:36 jav-a- 阅读(51) 评论(0) 推荐(0)

vue笔记
摘要://需要在表单位置添加 ref=“随便取” 绑定清空区域 ref="dataAddForm" this.$refs.dataAddForm.resetFields();//重置表单并取消校验结果 阅读全文

posted @ 2021-11-28 16:22 jav-a- 阅读(24) 评论(0) 推荐(0)

idea中设置maven依赖优先从指定本地仓库获取
摘要:Settings--> Build,Execution,Deployment --> Build Tools --> Maven --> Runner ,在VM Option中设置参数 -DarchetypeCatalog=internal 阅读全文

posted @ 2021-11-28 16:09 jav-a- 阅读(1869) 评论(0) 推荐(0)

启动报错 Unable to load authentication plugin 'caching_sha2_password'.
摘要:mysql 的driver版本太低,更改高点的版本。 如果是8.0以上的版本,driver驱动也需要更改。 <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> <dependency> <groupId>mys 阅读全文

posted @ 2021-11-27 12:16 jav-a- 阅读(122) 评论(0) 推荐(0)