
java报错
文章平均质量分 50
各种错误总结
pxyp123
这个作者很懒,什么都没留下…
展开
-
错误号码2058 Plugin caching_sha2_password could not be loaded:vX八白白白白白令自砸
错误号码2058 Plugin caching_sha2_password could not be loaded:vX八白白白白白令自砸。网上查了资料,是MySQL 从 8.0 版本开始加密方式改变导致的原因。具体的咋也不再这里分析了,就直说如何解决这个问题。把你的host、username、password替换掉上面的yourxxx,注意password前面没有空格。然后再去sqlyog连接就能成功连接上!原创 2023-11-04 20:45:03 · 726 阅读 · 0 评论 -
Mybatis报错 java.lang.ClassNotFoundException: Cannot find class: com.github.pagehelper.PageInterceptor
1.检查在pom.xml文件中加入依赖2.检查在mybatis的配置文件中加入PageInterceptor插件上述文件检查过后,没有出现问题。但是还是会报错。原创 2022-10-21 20:15:31 · 1011 阅读 · 0 评论 -
Cannot start compilation: the output path is not specified for module “xxx“. Specify the output
Cannot start compilation: the output path is not specified for module “**”. Specify the output path in Configure Project.大概意思就是,无法开始编译:未为模块“**”指定输出路径。idea报错解决:Cannot start compilation: the output path is not specified for module “XXX“._学亮编程手记的博客-优快云博客。原创 2022-09-15 16:08:39 · 2510 阅读 · 0 评论 -
单元测试@Test使用System.out.println()和Scanner的问题
运行Java程序,使用idea。在进行单元测试的时候,代码没有任何的问题,但是结果一直出不来,一直在转圈。显然,代码从逻辑上来说是没有任何问题的!!! 可以看到,如果是其他的代码,那么程序是能够正常运行的!!!那么问题就是这句:加上这句,又是一直转圈!在main程序里面写代码就能够解决此问题。但是原理尚不明确,有知道的兄弟希望告知。...原创 2022-06-07 10:56:07 · 503 阅读 · 0 评论 -
Cannot instantiate test(s): java.lang.SecurityException: Prohibited package name: java
问题描述:Cannot instantiate test(s): java.lang.SecurityException: Prohibited package name: java我的代码:public class StringTest { @Test public void test1(){ String s1 = "abc";//字面量的定义方式 String s2 = "abc"; s1 = "hello";原创 2022-05-21 10:59:04 · 2644 阅读 · 0 评论 -
Error:(1, 1) java: 非法字符: ‘\ufeff‘
原因:字符的编码格式不对。解决方法:本来是utf-8的,改成GBK注意:还有一种可能。你复制过来的代码是UTF-8带BOM的格式,将复制之前的代码换成utf-8(不带BOM)的格式。然后在你的编辑器下就可以用GBK的格式正常进行输出。...原创 2022-04-04 16:42:26 · 668 阅读 · 0 评论