- 博客(9)
- 问答 (1)
- 收藏
- 关注
原创 Java遇见Cannot resolve symbol ‘xxx‘错误
清除idea缓存重启后还是爆红“Cannot resolve symbol 'xxx”刚开始看到这个错误以为是没创建类或者命名错了,去检查发现没啥问题。原来是上面的方法少了个大括号,加上大括号就解决了该问题。有可能是idea缓存问题。
2023-05-27 18:47:53 319 1
原创 exceptions.MysqlDataTruncation: Data truncation: Incorrect string value: ‘\xE4\xBA\xBA\...‘
exceptions.MysqlDataTruncation: Data truncation: Incorrect string value
2023-03-20 23:59:54 671
原创 JS改类名报错:Uncaught TypeError: Cannot set properties of null (setting ‘className‘)
JS改类名报错:Uncaught TypeError: Cannot set properties of null (setting 'className')
2022-12-14 23:15:15 1329
原创 关于【org.springframework.beans.factory.BeanCreationException】
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'courseOrderMapper' defined in file [F:\LearningData\xxx\xxx\CourseOrderMapper.class]: Invocation of init method failed; nested exception is java.lang.Illegal
2022-02-28 18:31:45 256
原创 学习springMVC时遇到的第一个异常:TemplateInputException
《index.html》错误代码:<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org><head> <meta charset=" UTF-8"><title>Title</title></head><body><h1>首页</h1></body></html>.
2022-01-18 22:21:48 436
原创 java基础练习题:计算1000以内所有不能被7整除的整数之和
public static void main(String[] args) { //计算1000以内所有不能被7整除的整数之和 //1、先输出1000内的所有整数 //2、筛选出不能被七整除的数 //3、全部加一起 int sum = 0; for (int i = 0;i<1000; i++){//输出1000内的所有整数 //System.out.println(i); if (i%7!=0){//筛选出不能被七整.
2021-11-11 14:13:50 2799 2
原创 Java if语句错误: ‘;‘ expected
Scanner input = new Scanner(System.in);System.out.println("请输入今天的天气状况(1好,2不好):");int weathe = input.nextInt();if (weathe == 1){ System.out.println("今天天气太好了,我是逛街呢还是逛公园呢?" ); int i = input.nextInt(); if (i == 1){ System.out.println("逛.
2021-11-10 13:48:38 6802
原创 Java if语句判断报错Operator ‘||‘ cannot be applied to ‘boolean‘, ‘int‘
Scanner input = new Scanner(System.in);System.out.println("请输入年份:");int year = input.nextInt();if(year%4==0 && year%100!=0 || year%400=0){//error:Operator '||' cannot be applied to 'boolean', 'int' System.out.println(year + "是闰年");}else {.
2021-11-10 13:10:31 3331
空空如也
MyBatis Generator逆向生成文件失败
2022-03-04
TA创建的收藏夹 TA关注的收藏夹
TA关注的人