
收集的问题
懒~~
这个作者很懒,什么都没留下…
展开
-
IDEA的DB Navigator无法连接之时区解决
问题描述:Cannot connect to “xxxxx”.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原创 2021-09-13 16:34:29 · 2625 阅读 · 0 评论 -
当Eclipse或STS的tomcat启动正常,但localhost:端口号或127.0.0.1:端口号回车后显示404时
首先你得去Tomcat的安装目录看conf目录下的server.xml文件,找到< Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>,其中8080为默认端口号,如果已修改需要看网址输入的端口号是否匹配,一般8080都会被占用,建议修改为其他上一步正确的话,点击eclipse的servers,双击tomcat(如下图),首先看1所在位置端口号是否正确,再看2所在位置选原创 2021-03-23 22:15:15 · 478 阅读 · 0 评论 -
导入SpringBoot项目pom文件parent出错或Eclipse或STS的Marketplace出错
找到使用软件的.ini文件(eclipse.ini或SpringToolSuite4.ini),进入编辑,添加一行:-Djava.net.preferIPv4Stack=true原因:很大程度上是联网的问题原创 2021-03-16 10:07:50 · 640 阅读 · 0 评论 -
com.mysql.cj.jdbc.exceptions.PacketTooBigException
出现com.mysql.cj.jdbc.exceptions.PacketTooBigException: Packet for query is too large (1,530,486 > 1,048,576). You can change this value on the server by setting the ‘max_allowed_packet’ variable. 时,可以去MySQL的安装目录下找my.ini的文件,在最后一行加入"max_allowed_packet=16M"原创 2021-01-13 18:16:40 · 240 阅读 · 0 评论