本月博客排行
-
第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
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
Spring事务管理只对出现运行期异常进行回滚
Spring的事务管理默认只对出现运行期异常(java.lang.RuntimeException及其子类)进行回滚,需要了解更多Spring事务方面的知识,可详看本文
<iframe id="iframeu2261530_0" style="display: block; border-width: 0px; border-style: init ...
spark集群搭建时的一个问题
求大神解惑:
spark1.6版本操作hdfs报错:
在spark-shell里:
val file = sc.textFile("hdfs://master138:9000/sparktest/README.md")
val spc = file.filter(line => line.contains("Spark"))
当运行spc. ...
Java runtimeException
1.NullPointerException:见的最多了,其实很简单,一般都是在null对象上调用方法了。
NumberFormatException:继承IllegalArgumentException,字符串转换为数字时。
ArrayIndexOutOfBoundsException:数组越界
StringIndexOutOfBoundsException:字符串越界
ClassCastExce ...
Java异常总结(二)
package com.exception;
/**
* 所有应用程序异常的父类
* 凡是检查性异常,都继承Exception
* @author stevep
*
*/
public abstract class ApplicationException extends Exception {
private static final long serialV ...
运行时异常(RuntimeException)和受检查异常(Checked Exception)的本质区别
最本质的区别是RuntimeException是运行时才会发生的异常, 而受检查异常是编译时异常,编译器会分析哪些异常会在执行一个方法或者构造函数的时候抛出。
异常(Exception):你可以使用运行时异常或者编译时异常。
运行时异常(RuntimeException)也称作未检测的异常(unchecked exception),这表示这种异常不需要编译器来检测。RuntimeExceptio ...
Item 58: Use checked exceptions for recoverable conditions and runtime exception
1. The Java programming language provides three kinds of throwables: checked exceptions, runtime exceptions, and errors.
2. Use checked exceptions for conditions from which the caller can reaso ...
java.lang.RuntimeException: org.apache.hadoop.hbase.client.NoServerForRegionExce
通过MapReduce向HBase中写数据时java.lang.RuntimeException: org.apache.hadoop.hbase.client.NoServerForRegionException: Unable to find region for schedule,,99999999999999 after 10 tries.
解决方法:
异常信 ...
java笔记(10,java异常)
什么是异常:
异常:就是程序在运行时出现不正常情况。
异常由来:问题也是现实生活中一个具体的事物,也可以通过java的类的形式进行描述,并封装成对象。其实就是java对不正常情况进行描述后的对象体现。
Throwable
|--Error
|--Exception
|--RuntimeException
调用service静态方法抛RuntimeException问题
假设有一个service类是 AbcSvr在其内有一个static方法供外调用启动自己。
public static void startAbcSvr(Context ctx ) {
ctx.startService(new Intent(ctx, AbcSvr.class));
}
在某种情况下回抛出Exception
Excepti ...
javaweb项目RuntimeException不能默认打印到控制台
前几天搭建了一个框架: 配置 struts2 spring2 ibatis
struts http://struts.apache.org/ struts2.3.4.1 spring http://www.springsource.org/download srping 3.1.3 ibatis 2.3.0.677
搭建完成后,写了些测试都通过,添加了log4j ...
关于Spring声明式事务抛运行时异常时不回滚数据库
昨日,本人学习spring整合hibernate,在声明式事务处理时遇到问题了,令我百思不得其解。
问题:在事务处理时抛了RuntimeException却没有回滚数据库,还是往数据库中插入了值
解决:今天在Google上找了半天,没有找到解决办法。我就想,是不是数据库的问题呢?就在网上找MySQL关于数据库回滚的问题,终于让我找到了
1.首先,查看你数据库中表的类型是否支持回滚 命令为:show ...
Java.lang.RuntimeException: Invalid action class configuration that references
Java.lang.RuntimeException:
Invalid action class configuration that references an unknown class named [XXXAction]
之所以出现上述异常,在排除其他可能后,那就是input的问题了。这是因为struts2的表单验证机制,一旦你的表单出现问题,验证通不过,struts2就会去你的stru ...
The processing instruction must begin with the name of the target.
Exception in thread "main" java.lang.RuntimeException: Error occurred. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: org.xml.sax.SAXParseException: The processing i ...
RuntimeException和Exception区别
Runtime exceptions:
在定义方法时不需要声明会抛出runtime exception; 在调用这个方法时不需要捕获这个runtime exception; runtime exception是从java.lang.RuntimeException或java.lang.Error类衍生出来的。 例如:nullpointexception,IndexOutOfBoundsExcepti ...
Caused by: java.lang.RuntimeException: native typeface cannot be made
今天在调试程序的过程中,遇到一个莫名其妙的错误。每次运行到该界面总是意外停止,在查看了Logcat之后发现了如下的报错信息:
ERROR/AndroidRuntime(502): Caused by: java.lang.RuntimeException: native typeface cannot be made
对该报错信息进行分析之后发现时因为字体设置的原因,即程序中的该段代码:
Typ ...
Chapter 12. Error Handling with Exceptions -- Thinking in Java
1) An exceptional condition is a problem that prevents the continuation of the current method or scope. It’s important to distinguish an exceptional condition from a normal problem, in which you have ...