标签:argument bsp exce 调试 驱动 style 多个 模型 mode
SSH框架删除单条数据不会报错,一条以上数据回报:
java.lang.IllegalArgumentException: attempt to create delete event with null entity
在网上查到到不少解决方法,但是都解决不了。自己调试把struts2封装的ids打印出来了,结果是——ID前面多了一个空格!!!
一般多个同名string类型的参数struts2模型驱动封装的时候会以逗号分割,莫名多个空格这个真是奇葩了!浏览器提交的时候参数都是正常的,目测是旧项目 struts2框架的BUG。
System.out.println("id没有切分前"+model.getId());//逗号后面有多出个空格
String ids[] = model.getId().split(",");
System.err.println("ids"+ Arrays.toString(ids));
attempt to create delete event with null entity
标签:argument bsp exce 调试 驱动 style 多个 模型 mode
原文地址:http://www.cnblogs.com/sunyl/p/7492350.html