4. 异常
在风中的意志
这个作者很懒,什么都没留下…
展开
-
(异常-Junit) The annotation @Test is disallowed for this location
问题遇到这样的异常情况.The annotation @Test is disallowed for this location问题代码: @Test public void testCase1{ }解决措施脑抽了. 方法没加()括号. 加上即可. @Test public void testCase1(){ }...原创 2020-07-06 23:42:54 · 1356 阅读 · 2 评论 -
(异常-Junit) 程序包org.junit不存在
前言Junit打包.程序包org.junit不存在[ERROR] COMPILATION ERROR :[INFO] -------------------------------------------------------------[ERROR] /Users/sean/Documents/Gitrep/bigdata/spark/src/main/java/com/yanxml/bigdata/java/spark/demos/clickhistory/ClickHistoryTrai原创 2020-07-05 18:02:36 · 635 阅读 · 0 评论 -
(Mac异常) localhost: ssh: connect to host localhost port 22: Connection refused
前言今天启动Mac上的Spark, 运行start-all.sh. 报出了如下异常类型. 个人猜测是本地端口的问题.# 测试命令ssh localhost//ssh: connect to host localhost port 22: Connection refused解决措施配置本地到本地的ssh (不知道是否需要?)# 生成本地密码ssh-keygen -t rsa# 将本地公钥匙写入认证地址cat ~/.ssh/id_rsa.pub >> ~/.ssh/au原创 2020-07-03 11:14:13 · 786 阅读 · 0 评论 -
异常: No enclosing instance of type xx is accessible. Must qualify (Java 内部类)
异常前言. 开发时候遇到内部类的问题.异常No enclosing instance of type SparkProgrammingGuide is accessible. Must qualify the allocation with an enclosing instance of type SparkProgrammingGuide (e.g. x.new A() where x is an instance of SparkProgrammingGuide).代码如下 //原创 2020-07-03 10:57:07 · 815 阅读 · 0 评论 -
mysqld: mysqld: cannot execute binary file
Question执行sh mysqld --user=mysql时报错,mysqld: mysqld: cannot execute binary file。Solutionmysqld: mysqld: cannot execute binary file说的很明白了。不能执行二进制文件。### errorlocalhost:bin Sean$ sh mysqld --...原创 2018-06-20 15:54:29 · 17559 阅读 · 6 评论 -
Maven异常:maven 编码GBK的不可映射字符
QuestionMaven 在使用mvn package打包时,报错maven 编码GBK的不可映射字符。Solution因为貌似maven对于中文的解析默认为GBK,但是我们有的编码GBK不能解析。(GBK为台湾发行的汉字库)所以,我们在解析的时候转换为UTF-8 即可。方法一pom.xml文件内加入以下内容: <!-- 指明编译源代码时使用的字符编...原创 2018-04-09 21:57:59 · 1999 阅读 · 0 评论 -
异常 2 problemscvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be foun
1 报错Description Resource Path Location Typecvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'kulm:annotation'. dubbo-demo-provider....原创 2016-05-01 16:35:40 · 7750 阅读 · 0 评论 -
(Mysql启动异常) The server quit without updating PID file
Question在Linux服器上启动mysql, service mysql start,爆出如下错误:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)这个问题有多个原因造成的,所以我们需要在/etc/my.cnf 文件上查看mysql原创 2018-01-04 14:44:33 · 5740 阅读 · 0 评论 -
(异常)Circular reference involving containing bean
Question 有次开发过程中,编译器内编译成功。Maven进行打包时报错Spring进行了@Autowired关键字进行了循环依赖。报错内容如下:2017-09-27 14:35:31,021 [main] WARN [org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicat...原创 2017-11-03 11:16:48 · 6132 阅读 · 0 评论 -
(异常)Maven编译异常:不兼容的类型,推断类型不符合上限
Question今天Maven编译的时候,出现如下异常:[ERROR] COMPILATION ERROR :[INFO] -------------------------------------------------------------[ERROR] /Users/xx/Documents/Gitrep/xx/manager/src/main/java/com/xx/xx/xx/xxx原创 2017-10-22 23:19:20 · 16930 阅读 · 2 评论 -
The operator || is undefined for the argument type(s) int, int
Question// 示例代码if( (sizeA ) || (sizeB ) || (sizeC ) ){}这样,会报如上异常The operator || is undefined for the argument type(s) int, int。Answer因为,在Java内部,只能出线boolean类型的运算使用 运算符||。当Integer之间使用运算符||时,会报如上错误。解决办法,原创 2017-03-20 23:40:28 · 34774 阅读 · 0 评论 -
MySQL Illegal mix of collations for operation 'like'
在 MySQL 5.5 以上, 若欄位 Type 是 time,date,datetime 在 select 時若使用 like ‘%中文%’ 會出現 Illegal mix of collations for operation ‘like’ 在寫程式時要對每個欄位進行搜尋, 在執行時可能就會出現時間欄位 like ‘%中文%’ 這種語法, 這在舊版的 MySQL 是不會出現錯誤的. 升原创 2017-03-19 22:58:14 · 6526 阅读 · 1 评论