java.lang.IllegalStateException: The request associated with the AsyncContext has already completed processing.
at org.apache.catalina.core.AsyncContextImpl.check(AsyncContextImpl.java:502)
at org.apache.catalina.core.AsyncContextImpl.getResponse(AsyncContextImpl.java:231)
at java.lang.Thread.run(Thread.java:662)
情况描述:新装的centos、mysql,部署tomcat后,jdbc的数据库操作异常的慢,大概10秒一次update操作,度之谷之,找到http://www.cnblogs.com/sjhrun2001/archive/2009/04/29/1446606.html参考上述网站,引用:
最近在Linux服务器上安装MySql5后,本地使用客户端连MySql速度超慢,本地程序连接也超慢。
解决方法:在配置文件my.cnf的[mysqld]下加入skip-name-resolve。
原因是默认安装的MySql开启了DNS的反向解析。如果禁用的话就不能在MySQL的授权表中使用主机名了而只能用ip格式。
然后问题得以解决。
分享到:
相关推荐
IllegalStateException: The specified child already has a parent.我的博客中有文章讲解
纠结了半天的 java.lang.IllegalStateException: getOutputStream() has already。这个问题困扰了半天,在网上查阅了大量资料 出这个错误一般就是下面2个.....
在Java的Web开发中,`java.lang.IllegalStateException: Cannot call sendError() after the response has been committed` 是一个常见的错误,通常发生在尝试在HTTP响应已经发送到客户端之后调用`sendError()`方法...
IllegalStateException如何解决.md
IllegalStateException解决办法.md
java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but...
IllegalStateException(解决方案).md
该错误可能由以下几种情况引起: 1. **多线程并发访问**:在多线程环境中,如果多个线程同时尝试访问同一个OutputStream,而没有适当的同步控制,就可能导致这个问题。 2. **资源未正确关闭**:如果你在完成写入后...
在Android开发过程中,Java异常`java.lang.IllegalStateException`是一个常见的错误类型,它通常表示程序在不合法或者不合适的状态下尝试执行某项操作。在上述描述中提到了两种特定的`IllegalStateException`情况: ...
这个存储库提供了一种在处理片段传输和后台任务时避免“java.lang.IllegalStateException:Can not perform this action after onSaveInstanceState”的方法。 您可以在的非常权威的阅读有关该问题和可能的解决方案...
项目中碰到的,记录一下
项目中碰到的,记录一下解决方案