日常报错
señoritaw
这个作者很懒,什么都没留下…
展开
-
springboot连接redis异常org.springframework.data.redis.RedisConnectionFailureException
org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to 192.168.145.128:6379配置文件中redis的host是虚拟机的ip 要看一下ip是否正确找到redis.conf文件cd /usr/local/redis/bin #进入bin目录vim redis.conf #编辑redis配置文件找到bind 127.0.0.1..原创 2021-08-10 15:57:26 · 6667 阅读 · 0 评论 -
org.eclipse.jgit.api.errors.TransportException: https://github.com/aurora-am
SpringCloud Config 使用http连接github时报错看了一下配置文件中 读取的分支是master但是在github上新建repository的时候默认的分支是main所以改一下读取的分支名就可以解决了原创 2021-07-31 18:46:41 · 1915 阅读 · 1 评论 -
连接mysql错误:create connection SQLException, url: jdbc:mysql://localhost:3306/db2021?useUnicode=true
具体报错如下:java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zo原创 2021-07-19 10:01:19 · 5214 阅读 · 0 评论 -
idea能正确引入 @Slf4j 注解,不能识别log
import包时没有报错,检查pom中引入了依赖,在本地仓库也能找到lombok<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional></dependency>在 idea中添加lombok插件Setting...原创 2021-07-18 16:58:52 · 871 阅读 · 1 评论 -
application.yml数据库配置driverclassname报错 找不到com.mysql.jdbc.Driver
解决办法 在父pom文件的依赖配置中写上完整的版本号<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>8.0.11</scope></dependency>yml文件数据库配置 datasource: type: com.a..原创 2021-07-18 10:28:08 · 1254 阅读 · 0 评论 -
如何快速访问github网站?
github上有很多开源的项目原创 2021-06-16 19:34:10 · 19598 阅读 · 43 评论 -
org.springframework.jdbc.support.SQLErrorCodesFactory - SQLErrorCodes loaded: [DB2, Derby, H2, HSQL,
错误信息:org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]org.springframework...原创 2019-04-15 10:02:29 · 6232 阅读 · 0 评论