精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2005-04-07
试过了,不行啊
而且spring自带的例子里面没有这一块,也可以运行啊 |
|
返回顶楼 | |
发表时间:2005-04-07
你们用bind的时候有什么特殊的设置啊?
|
|
返回顶楼 | |
发表时间:2006-04-09
我根据夏昕那个教程学习时也遇到这个问题(发现很多人遇到这个问题,但找不到回复,估计是水平到了一定程度会自己找到问题所在的):
加入<spring:bind>就会出现:“no ContextLoaderListener registered”的错误,根据文档应在web.xml里加入<listener>,可是加入<listener>后: listerner要求有xml文件是默认的,Dispatcher也需要一个xml文件,我把两个xml设为同一个(applicationContext.xml),然后会出现:“Neither Errors instance nor plain target object for bean name 'command' available as request attribute” 的错误。 不知各位在学习时有没有遇到,还请多多指教。 |
|
返回顶楼 | |
发表时间:2006-04-10
引用 “Neither Errors instance nor plain target object for bean name 'command' available as request attribute”
是因为你的model中不包含Errors的Model: Map model = new HashMap(); model.putAll(errors.getModel()); return new ModelAndView(viewName, model); |
|
返回顶楼 | |