本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- lemonhandsome
- luxurioust
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
上传文件时候遇到的小异常
exception
javax.servlet.ServletException: BeanUtils.populate
org.apache.struts.util.RequestUtils.populate(RequestUtils.java:495)
org.apache.struts.action.RequestProcessor.processPopulate(RequestPro ...
Could not initialize class net.sf.jasperreports.engine.util.JRStyledTextParser
java.lang.NoClassDefFoundError: Could not initialize classnet.sf.jasperreports.engine.util.JRStyledTextParser
net.sf.jasperreports.engine.fill.JRBaseFiller.<init>(JRBaseFiller.java:174 ...
java常用类解析七:java异常机制、异常栈、异常处理方式、异常链、异常丢失
package demo.others;
import mine.util.exception.MyException;
public class ExceptionDemo1 {
public void f() throws MyException {
throw new MyException("自定义异常");
}
public void ...
org.hibernate.PropertyValueException: not-null property references a null or tra
引用org.hibernate.PropertyValueException: not-null property references a null or transient value:
org.hibernate.PropertyValueException: not-null property references a null or transient value: com.bjcx.p ...
java Exception--org.springframework.dao.DataIntegrityViolationException
引用exception
javax.servlet.ServletException: org.springframework.dao.DataIntegrityViolationException: not-null property references a null or transient value: com.grxxh.heen.Heen.cname; nested exception ...
RuntimeException和Exception区别
Runtime exceptions:
在定义方法时不需要声明会抛出runtime exception; 在调用这个方法时不需要捕获这个runtime exception; runtime exception是从java.lang.RuntimeException或java.lang.Error类衍生出来的。 例如:nullpointexception,IndexOutOfBoundsExcepti ...
项目异常处理的几点参考
项目处理的几个总结:
1选择处理的原则:根据异常是否可恢复决定是否处理?
常见的如:资源失败导致异常(Exception due to resource failures): 如内存不足或网络连接失败导
致出现异常等。这些异常的出现客户端可以采取相应的措施来恢复应用程序的继续运行。
2抛出什么异常?
抛出异常,上层是否可以拯救(比如DAO层的sql异常),如果no,那么抛出带有说明的运行时异常,反之 ...
Eclipse Debugging Error: ClassNotFoundException的解决办法
用eclipse的时候,遇到一个问题,每次debug的时候,都会第一个弹出这个exception
把ClassNotFoundException:caught and uncaught前面的勾去掉就OK了。
reference:
I just hit a really annoying (sort of) bug in Eclipse. I could not debug any of my ...
java.util.ConcurrentModificationException
java.util.ConcurrentModificationException
工作中碰到个ConcurrentModificationException。代码如下:List list = ...;for(Iterator iter = list.iterator(); iter.hasNext();) { Object obj = iter.next(); ... ...
严重: Exception starting filter struts2 java.lang.NoClassDefFoundError: org/apac
[code="java"]严重: Exception starting filter struts2
java.lang.NoClassDefFoundError: org/apache/commons/lang/StringUtils
at com.opensymphony.xwork2.config.providers.XmlConfigurationPr ...
EasyMock 3.0, mocking class throws java.lang.IllegalStateException: no last call
Running the following unit test throws the exception: java.lang.IllegalStateException: no last call on a mock available
import org.easymock.*;
import org.junit.*;
public class MyTest {
@Test
...
[转]hibernate延迟加载机制理解
[转]http://www.sunxin.org/article/784.html
Hibernate延时加载,其实这个异常写的非常之清楚,就是会话关闭,无法对Hibernate实体进行操作。造成这样的情况有很多 ...