ljyf5593

Results 7 comments of ljyf5593

请问这个问题有没有解决办法?我觉得这样确实有点儿不合理啊

我查询了一下大概是要加驱动,mysql8.0的jdbc驱动和mysql5.7以前的驱动不一样,这就导致现在如果cboard本来链接的数据库是8.0就无法链接成功,或者配置的数据源是8.0的也无法链接成功,因为选不了jdbc 8.0的驱动。 Mysql和mysql-connector都为8.0以上的版本时,连接驱动需要从com.mysql.jdbc.Driver了修改为com.mysql.cj.jdbc.Driver 参考地址 https://blog.csdn.net/weixin_37211894/article/details/80978448 https://blog.csdn.net/zhangvalue/article/details/85219342

好的,我研究一下,谢谢!

可以直接修改 src\main\resources\spring-security-jdbc.xml 文件,在 `security:http` 这个元素内部添加一个子元素 ``` ``` 修改后的文件内容如下: ``` ```

I write this utils funtion can support this feature ```go func parseFormula(formula string, sourceRowID, targetRowID int) (newFormula string) { reg := regexp.MustCompile(fmt.Sprintf("([A-Z]{1,2}%d)", sourceRowID)) cellSlice := reg.FindAllString(formula, -1) newFormula = formula...

@Larandar I understand your needs,How do you solve?