异常备忘
harveyzeng
这个作者很懒,什么都没留下…
展开
-
java.lang.UnsupportedClassVersionError: Bad version number in .class file
原创 2012-02-23 18:28:43 · 69 阅读 · 0 评论 -
遍历集合时出现的异常Exception in thread "main" java.util.ConcurrentModificationException
if (str.equals("-")){ list.remove(str); } } }因为list在循环中的时候是不可以删除它的元素的这样写就没有问题for (Iterator it = list.iterator(); it.hasNext();) { String str = (String)it.next(); if (str.原创 2012-08-29 18:11:50 · 208 阅读 · 0 评论 -
JSF primefaces dataTable表格分页问题
新加载数据,刷新表格后,页码总是停留在之前点击过的页码上,就需要调用下面这段代码把页码重置: <script type="text/javascript"> function resetDataTableIndex(){ if (typeof(uploadResultDataTable) != 'undefined' &amp;&amp; null !=原创 2014-07-23 16:12:20 · 216 阅读 · 0 评论 -
EJB开发,Caused by: java.rmi.MarshalException: Failed to communicate.
estableDelegate; local class incompatible: stream classdesc serialVersionUID = -6787310117729693199, local class serialVersionUID = 1009500911220254726 at org.jboss.remoting.transport.socket.SocketClientInvoker.handleException(SocketClientInvoker.java:12原创 2014-07-23 16:48:58 · 361 阅读 · 0 评论 -
常见异常备忘
xpected content storage modification参考: http://blog.csdn.net/phantomes/article/details/42002495 3. Mybatis的if test字符串比较问题<if test="isExpired=='Y'">and msg.expire_time &lt; now()</if>会报NumberFormatEx原创 2015-09-23 17:59:35 · 122 阅读 · 0 评论 -
mybatis 模糊查询%问题
batis防止sql注入 http://blog.sina.com.cn/s/blog_8e5354210101ezfm.htmlhttp://my.oschina.net/ydsakyclguozi/blog/266863 ----------------------------其它知识点 end----------------------------- 网上找的例子大部分说:对于MySQL可以通过CONCAT('%',#{param}#,'%')进行模糊查询但是引入了另一原创 2015-09-28 18:52:44 · 180 阅读 · 0 评论 -
解决Python UnicodeDecodeError: ‘ascii’ codec can’t decode
原创 2016-04-13 17:54:27 · 826 阅读 · 0 评论