摘要:
package array.test;public class Test2 { public static void main(String[] args) { //1. 声明并初始化二维数组 int[][] arr = new int[10][]; //2.给数组元素赋值 for (int i = 阅读全文
摘要:
问题描述:新建完一个maven项目,pom文件报如下错误, 'artifactld' with value "Java基本语法' does not match a valid id pattern. 源码: <?xml version="1.0" encoding="UTF-8"?><project 阅读全文
摘要:
一、问题描述 IDEA中运行Myabtis的测试代码时,报如下错误: org.apache.ibatis.exceptions.PersistenceException: ### Error building SqlSession.### The error may exist in com/sul 阅读全文
摘要:
一、问题描述 IDEA连接数据库的时候报错:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property 原因:时区错误,Mysql默认的时区是UTC时区,比北京晚8小时 二、解决方法 阅读全文