博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java.lang.ArrayIndexOutOfBoundsException: 17
阅读量:6223 次
发布时间:2019-06-21

本文共 1410 字,大约阅读时间需要 4 分钟。

hot3.png

项目框架 SpringMVC+Hibernate

开发工具 Myeclipse10

报错代码(下图):

135448_9opq_256102.png

检查项目发现出现问题的原因:配置文件有问题,少配置了一个字段,下面红色注释部分。

<fields>

a.id,a.title,a.author,a.content,a.source,a.createDate,a.releaseDate,(select name from BDic b where b.id=a.audit),(select name from BDic b where b.id=a.release),a.status,(select name from BDic b where b.id=a.type),b.id,c.id,d.id,a.newType,a.contentPicture,a.targetUrl,a.kind

</fields>

配置上缺少的字段,再次运行OK。

以下为部分完整代码段:

getList
getList
id,title,author,content,source,createDate,releaseDate,audit,release,status,type,topic.id,channel.id,conference.id,newType,contentPicture,targetUrl,kind
a.id,a.title,a.author,a.content,a.source,a.createDate,a.releaseDate,(select name from BDic b where b.id=a.audit),(select name from BDic b where b.id=a.release),a.status,(select name from BDic b where b.id=a.type),b.id,c.id,d.id,a.newType,a.contentPicture,a.targetUrl,a.kind
from News a left join a.topic b left join a.channel c left join a.conference d
a.id = ?
a.title like ?
a.author like ? 
           
a.source like ? 
a.audit like ? 
cn.digitalpublishing.po.News

转载于:https://my.oschina.net/u/256102/blog/289290

你可能感兴趣的文章
CWidgetMgr---H
查看>>
spring测试实例
查看>>
创建Sdcard
查看>>
两个数组a[N],b[N],其中A[N]的各个元素值已知,现给b[i]赋值,b[i] = a[0]*a[1]*a[2]…*a[N-1]/a[i];...
查看>>
cocos2d-x与ISO内存管理(转)
查看>>
磁盘I/O的性能评估方法
查看>>
计算机排序算法
查看>>
普通IT和文艺IT工程师的区别
查看>>
sql之left join、right join、inner join的区别
查看>>
分贝显示器,实时显示声音强度(附源码)
查看>>
Struts2 高危漏洞修复方案 (S2-016/S2-017)
查看>>
新手必看:如何快速看懂VC++项目
查看>>
使用NativeExtension向AIR app 添加Activity和BroadCastReceiver(2)
查看>>
JavaScript 装饰者模式(this运用)
查看>>
Entity Framework做IN查询
查看>>
架构-缓存
查看>>
多线程的面试题
查看>>
VirtualBox安装Debian6的方法和步骤(详细)
查看>>
My Emacs For Common Lisp
查看>>
数据处理函数
查看>>