Ray Liu

Results 4 comments of Ray Liu

> Hi, Can you help me to make a VSCode version? I use both ideas and VSCode, so I also hope that this plugin can be included in VSCode. It...

``` spring.datasource.url=jdbc:mysql://localhost:3306/tp_music?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC spring.datasource.username=root spring.datasource.password=123456 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver ``` 从配置文件中可以看出使用的是MySQL,你要将报错信息粘贴出来,这样才能准确定位问题

我忘了代码,推测一下哈,MySQL是作为DB存储来使用,Redis是作为缓存来使用。你可以先找个docker教程将mysql和redis分别启动,然后将项目中的配置文件和自己docker的容器配置做比较进行替换 ![image](https://github.com/user-attachments/assets/f2778330-48ee-423e-abc8-8e13c171e715) ``` spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/springboot_learning?serverTimezone=Asia/Shanghai&characterEncoding=utf-8 username: root password: root redis: host: localhost port: 6379 password: 123456 database: 0 lettuce: pool: max-idle: 16 max-active: 32 min-idle: 8...

看了自己star的仓库,发现这个了,时间真快啊,我也是两年前clone到本地学习的