
错误解决
文章平均质量分 60
CenturyMagus
这个作者很懒,什么都没留下…
展开
-
It is indirectly referenced from required .class file 错误的解决
错误提示: It is indirectly referenced from required .class file 错误的解决原因:你正要使用的类调用了另一个类,而这个类又调用了其他类,这种关系可能会有好多层。而在这个调用的过程中,某个类所在的包的缺失就会造成以上那个错误。解决方法:导入缺失的包<!--google_ad_client = "pub-00686590366248原创 2006-07-02 20:08:00 · 9070 阅读 · 0 评论 -
面对几个错误的解决关键
1、org.springframework.orm.ObjectRetrievalFailureException: Object of class [com.xindeco.myregister.pojo.MyRegisterInfo] with identifier [14]: not foundMyRegisterInfo在数据库没有identifier [14]对象。2、org.sprin转载 2006-08-03 15:42:00 · 15451 阅读 · 2 评论 -
java.util.MissingResourceException: Can't find bundle for base name
Solve java.util.MissingResourceException: Cant find bundle for base name com...config, locale zh_CNat java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)at java.util.Res转载 2009-05-23 14:51:00 · 1798 阅读 · 0 评论 -
java.sql.SQLException: ORA-01000: 超出打开游标的最大数
很多朋友在Java开发中,使用Oracle数据库的时候,经常会碰到有ORA-01000: maximum open cursors exceeded.的错误。 实际上,这个错误的原因,主要还是代码问题引起的。 ora-01000: maximum open cursors exceeded. 表示已经达到一个进程打开的最大游标数。 这样的错误很容易出现在Java代码中的主要原因是:Java代码在执转载 2009-09-02 08:58:00 · 1040 阅读 · 1 评论