异常错误
Robert_Jen
努力,奋斗!
展开
-
端口占用Identify and stop the process that‘s listening on port 8080 or configure thi
端口查杀 在开发的时候,大家应该都遇到过开发软件卡到无法运行,那么只能强制结束进程 强制结束的进程,如果是正在运行的项目,项目是非正常结束的,那么再次启动运行项目的时候就会报端口被占用的错误,那么该怎么办呢? 找到端口杀掉它(因为上次项目非正常结束,所以端口还是在占用的,导致再次运行报错) Identify and stop the process that's listening on port 8080 or configure thi 如何解决问题呢? windows+r输入cmd并打开原创 2021-04-28 16:34:28 · 24343 阅读 · 15 评论 -
org.springframework.security.authentication.InternalAuthenticationServiceException: Index: 0, Size:
SpringSecurity使用MySQL数据库进行认证,MySQL中带中文的用户认证报此错误 org.springframework.security.authentication.InternalAuthenticationServiceException: Index: 0, Size: 0 Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 MySQL的url未配置中文即转换 url: jdbc:mysql:原创 2020-10-28 12:46:42 · 6690 阅读 · 0 评论 -
JdbcTemplate执行带有中文的sql语句查询数据为空
在用SpringSecurity整合MySQL数据库实现认证的时候,数据库中的英文用户可以认证,但带有中文的用户却报错误,查询结果为空 让我一个排错呀 其实很简单,既然英文用户就可以认证,表明sql语句,JdbcTemplate,以及程序都没有错误 那问什么带中文就不行呢,应该考虑数据库方面的问题,sql语句的中文支持了 MySQL的url未配置中文即转换 datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc原创 2020-10-28 12:42:20 · 586 阅读 · 2 评论 -
java.sql.SQLException: The server time zone value ‘�й���ʱ��‘ is unrecognized or represents more tha
Springboot项目启动报了一下错误 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 s原创 2020-10-25 15:21:27 · 261 阅读 · 0 评论