本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
[git error ]1 more remote No anonymous write access Authentication failed for
问题描述:
git 上传时发生 错误
[git error ]1 more remote No anonymous write access Authentication failed for
日志显示:
Invocation failed Server returned invalid Response.
java.lang.Runt ...
[hive error] check the manual that corresponds to your MySQL server version for
问题
[zkkafka@yanfabu2-36 tmp]$ schematool -dbType derby -initSchema
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/zkkafka/hive/lib/log4j-slf4j-impl-2.6 ...
[hive error ] You need either to explicitly disable SSL by setting useSSL=false
问题
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/zkkafka/hive/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found ...
【hbase error】hbase shell Found class jline.Terminal
错误日志
[zkkafka@yanfabu2-35 ~]$ hbase shell
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/zkkafka/hbase/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/Stat ...
【MYSQL】Caused by java.sql.SQLException Unknown system variable 'tx_read_only'
解决 【MYSQL】Caused by java.sql.SQLException Unknown system variable 'tx_read_only'
Caused by: java.sql.SQLException: Unknown system variable 'tx_read_only'
at com.mysql.jdbc.SQLError.createSQL ...
mysql 安装 【解决】mariadb-libs is obsoleted by mysql-community-libs-5.7.17-1.el6.x86
【解决】mariadb-libs is obsoleted by mysql-community-libs-5.7.17-1.el6.x86_64
问题
[root@fdfs-mysql1 ~]# rpm -ivh mysql-community-libs-5.7.17-1.el6.x86_64.rpm
warning: mysql-community-libs-5.7.17- ...
git push 100m error
git push 100m error
#git push origin master
Counting objects: 215, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (176/176), done.
Writing objects: 100% (215 ...
如何处理错误信息 Pricing procedure could not be determined
当给一个SAP CRM Quotation文档的行项目维护一个产品时,遇到如下错误信息:Pricing procedure could not be determined
通过调试得知错误消息在function module CRM_PRIDOC_COM_PRCPROC_DET_SEL第55行抛出:
在subroutine DETERMINE ...
到底哪种类型的错误信息会阻止business transaction的保存
当试图在CRM WebUI保存一个business transaction比如Opportunity时,可能会遇到各种各样的错误消息。有的错误消息会阻止Business transaction被save,有的则不会。这些错误消息有何区别?
通过debug, 发现method check_popup_to_raise 会检查当前是否存在会导致弹出popup window提示给end user的er ...
junit学习(三)——junit测试失败的两种情况
junit测试失败的两种情况:一个是Failure,一个是Error。
先上测试代码:
package com.wjl.junit;
import static org.junit.Assert.*;
import org.junit.Test;
/**
* Junit_demo_3
* 实验测试失败两种情况
* **/
public class ErrorAnd ...
redis报错 OOM command not allowed when used memory > 'maxmemory'
OOM command not allowed when used memory > 'maxmemory'
解决办法:
修改配置文件
取消注释这句,
maxmemory-policy allkeys-random
但是这种释放内存的方法很粗暴。可以选别的方案,共5个方案。
使用Log4j时,配置ConversionPattern(日志显示格式)遇到的问题
log4j:ERROR Category option " 1 " not a decimal integer.
报错内容:
No Spring WebApplicationInitializer types detected on classpath
log4j:ERROR Category option " 1 " not a decimal in ...
tomcat8 运行期错误HTTP header parsing errors
添加头部信息后,开发阶段没异常,部署到tomcat中调用时出现错误:
07-Dec-2016 16:03:57.210 信息 [http-nio-8080-exec-5] org.apache.coyote.http11.Http11Processor.service Error parsing HTTP request header
Note: further occurrences ...
Java基础知识回顾第九篇 - Java异常机制 | 认识多线程
1、Java异常机制(Exception和Error)
我们先通过下面的一张图看看java异常层次结构:
从图中可以看出,不管是Exception还是Error,它们都继承自Throwable。下面我们来分别认识一下Exception和Error。
总的来说的,Exception和Error是一种不正常的行为,或许是程序本身导致的,也或许是系统导致的。
Exception:可以是 ...