
BugSystem
文章平均质量分 75
iteye_12058
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
java.util.ConcurrentModificationException 异常
原码: public List findGroupsByCid(String cid) throws Exception { List groupList = new ArrayList(); groupList = gdao.findGroupsByCid(cid); //count account in this group's number Iterator it = groupL...2009-02-18 13:24:46 · 120 阅读 · 0 评论 -
Unable to load configuration. - bean jar:file.../lib/struts2-core-2.1.6.jar
Struts2(使用2.1.6版本)工程部署后,启动tomcat时,出现: Unable to load configuration. - bean - jar:file:/D:/Program%20Files/tomcat-6.0.10/webapps/S2Demo/WEB-INF/lib/struts2-core-2.1.6.jar!/struts-default.xml:46:178at ...2009-09-15 15:37:44 · 184 阅读 · 0 评论 -
Request[/airSellOS] does not contain handler parameter named 'method'
bug: javax.servlet.ServletException: Request[/airSellOS] does not contain handler parameter named 'method'. This may be caused by whitespace in the label text. at org.apache.struts.actions.DispatchA...2009-08-07 17:30:43 · 284 阅读 · 0 评论 -
org.springframework.orm.hibernate3.HibernateSystemException: Unknown entity
错误信息: org.springframework.orm.hibernate3.HibernateSystemException: Unknown entity: Book; nested exception is org.hibernate.MappingException: Unknown entity: BookCaused by: org.hibernate.MappingExcept...2009-08-05 18:48:24 · 655 阅读 · 0 评论 -
ClassNotFoundException: com.mysql.jdbc.Driver
protected static Connection getConnection() throws SQLException { try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTr...2009-05-13 10:05:23 · 146 阅读 · 0 评论 -
Hibernate.cfg.xml文件版本变化
在项目进行中,hibernate.cfg.xml文件的版本不知什么时候从3.1变成了2.1,生成pojo的时候无法成功,最后在.myhibernatedata文件中写着“version=2.1”,改成“version=3.1”,恩,就好了。...2009-04-08 17:21:49 · 134 阅读 · 0 评论 -
mx.messaging.channels.rtmpchann can not be found
创建flex工程时出现错误channel definition mx.messaging.channels.rtmpchannel can not be found,查了相关资料说是“最新版的Fluorined在services-config.xml中新增了RTMP Channel,主要是用来配置Flex Messaging,编译时需要FDS.swc支持,当然如果不需要此功能可以注释掉channe...2009-03-29 13:43:48 · 140 阅读 · 0 评论 -
ResultSet may only be accessed in a forward direct
源码: Query query = session.createQuery(hql); if(firstindex!=-1&&maxresult!=-1){ query.setFirstResult(firstindex); query.setMaxResults(maxresult); } List<T> temp = query.list(); ...2009-03-18 11:07:49 · 164 阅读 · 0 评论 -
连接本地数据库无法添加驱动
工作项目中使用的数据库一直是非本地服务器上的,有需要连接本地数据库,但是在DB Browser中创建新的DataBase Driver一直失败,最后得知要安装sqlserver补丁。恩,就ok了。访问的别人的数据库都安装过补丁的。...2009-03-15 15:42:06 · 165 阅读 · 0 评论 -
Error Creating SessionFactory异常
我登录进系统中测试我做的模块时,出现“Error Creating SessionFactory ”异常,最终发现在hibernate.cfg.xml文件中多了一个pojo的配置信息,该pojo在工程中根本不存在。 该种异常的发生还有其他的情况,见:http://www.blogjava.net/freeatom/archive/2007/12/09/166445.html 。 ...2009-02-19 12:51:07 · 335 阅读 · 0 评论 -
报错:org.apache.catalina.loader.WebappClassLoader modified
启动项目时,一直报错: 2012-8-1 17:59:13 org.apache.catalina.loader.WebappClassLoader modified 信息: Additional JARs have been added : 'jaxb-impl-2.0.1.jar' 2012-8-1 17:59:13 org.apache.catalina.core.Stan...原创 2012-08-01 18:14:04 · 484 阅读 · 1 评论