最新文章列表

iOS定位引发crash的具体行

手动添加一个断点:add symbolic breakpoint,并命名为objc_exception_throw   这样,每次应用crash时,都可直接定位到出错的代码行上。
jsntghf 评论(0) 有1130人浏览 2014-08-02 09:44

mysql 'Too many connections'

server端运行一段时间以后,数据库异常 Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections ...
chenchangqun 评论(0) 有1162人浏览 2014-07-28 16:42

Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker from tr

Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL): Turn your Session into FlushMode.COMMIT/AU org.springframework.dao.InvalidDataAccessApiUsageException: Write operations ...
wbj0110 评论(0) 有1418人浏览 2014-07-11 10:44

解决 Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker

org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly ...
wbj0110 评论(0) 有896人浏览 2014-07-11 10:40

TOMCAT报Caused by: java.lang.OutOfMemoryError: Java heap space错误解决方法

在进行大数据量操作的时候,经常会出现内存溢出的错误,如图:   处理方法是设置TOMCAT的内存大小,如图     sts   Tomcat是目前应用十分广泛的 ...
wbj0110 评论(0) 有1073人浏览 2014-07-03 09:55

Java异常:java.lang.ClassNotFoundException: org.apache.commons.dbcp.BasicDataSource

只需把这三个commons-pool.jar、commons-dbcp-1.2.2.jar和commons-collections-3.2.jar包加入到lib里即可解决。
为了明天而努力 评论(0) 有1505人浏览 2014-06-23 16:07

java.lang.NumberFormatException: For input string: ""

这种异常基本上碰到的都是因为后台没有传输数据到前台, 而前台有jstl要解析的对象。 检查一下前台网页即可。 at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:504) at java.lang ...
alleni123 评论(0) 有1631人浏览 2014-06-11 15:12

centOS 6.4关闭防火墙步骤

关闭虚拟机防火墙: 关闭命令:  service iptables stop 永久关闭防火墙:chkconfig iptables off 两个命令同时运行,运行完成后查看防火墙关闭状态 service iptables status
wbj0110 评论(0) 有821人浏览 2014-06-05 14:41

CentOS Linux解决Device eth0 does not seem to be present

在使用vmware迁移linux系统过程中,发现部署后的linux系统无法启动网卡 报错为 Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization 错误原因,是因为linux网卡绑定了原mac地址导致 解决方法为 1.使用ifcnfig -a 查看当前主机mac ...
wbj0110 评论(0) 有1084人浏览 2014-06-05 12:25

python 异常

python基础教程 第八章小结:   
yy_gy 评论(0) 有372人浏览 2014-06-05 11:01

No operations allowed after connection closed异常的解决方案

异常详细:ERROR: No operations allowed after connection closed. 异常原因:Caused by: org.hibernate.TransactionException: unable to rollback against JDBC connection                   .................         ...
什么世道 评论(0) 有16187人浏览 2014-06-01 15:08

org.hibernate.TransactionException: nested transactions not supported错误的解决方案

异常名称: org.hibernate.TransactionException: nested transactions not supported异常分析:You probably have begun a transaction, and trying to begin another one without having committed or rollbacked the previ ...
什么世道 评论(0) 有8768人浏览 2014-05-31 22:09

java中Exception异常处理

1、异常分类:运行时异常和非运行时异常,2中均直接或间接继承Exception类,运行时异常直接或间接继承RuntimeException类,非运行时异常不继承此类。 2、 ...
如若_晴 评论(0) 有930人浏览 2014-05-28 15:22

JAVA笔记-JAVA中的Exception自定义异常

输入两个正整数并计算它们之和,当输入任意的一个数超出(0-10)范围时,抛出自己自定义的异常(NumberRangeException),异常的信息显示”数字不在指定范围。“   package MyException; class NumberRangeException extends Exception { public NumberRangeException() { ...
陆文钱 评论(0) 有1788人浏览 2014-05-22 23:06

java的static、内部类及异常

一、静态字段 1、静态字段与类相关联,属于类而非实例,所有实例之间共享。 2、静态字段的内存分配只会发生一次,在类加载的时候分配内存。 二、静态方法 1、静态方法不能被子类重写 2、静态方法中不能有this和super关键字 3、静态方法不能访问非静态字段和方法 三、静态块 1、无名、无参、无返回值 2、JVM限制了静态块的大小为64k 3、在静态块中不能抛出被检查的异常 ...
hxl1988_0311 评论(0) 有584人浏览 2014-05-15 10:55

运行时异常(RuntimeException)和受检查异常(Checked Exception)的本质区别

最本质的区别是RuntimeException是运行时才会发生的异常, 而受检查异常是编译时异常,编译器会分析哪些异常会在执行一个方法或者构造函数的时候抛出。 异常(Exception):你可以使用运行时异常或者编译时异常。 运行时异常(RuntimeException)也称作未检测的异常(unchecked exception),这表示这种异常不需要编译器来检测。RuntimeExceptio ...
darrenzhu 评论(0) 有13929人浏览 2014-05-02 13:47

java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.springframework.context.support.AbstractApplicationContext.<init>(AbstractApp ...
漫步至黄昏 评论(0) 有1857人浏览 2014-04-28 22:26

Item 63: Include failure-capture information in detail messages

1.  When a program fails due to an uncaught exception, the system automatically prints out the exception’s stack trace. The stack trace contains the exception’s string representation, the result of in ...
leonzhx 评论(0) 有878人浏览 2014-04-24 14:51

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics