Neither BindingResult nor plain target object for bean name 'command' available as request attribute

 今天想用Sptring mvc,碰到一个非常让人头疼的问题,这个开发模式是spring2.1时候的spring mvc 的开发模式,需要配置好多的参数,给个人的感觉类似于struts1的模式,也更像strusts的配置文件的流程 

 

如果你选择的是spring MVC 框架,而你在前台使用spring的标签时,那么你有可能出现在这个情况。

javax.servlet.jsp.JspTagException: Neither BindingResult nor plain target object for bean name 'command' available as request attribute

方法:1为抛出异常原因,2为异常解决方法。

1. 原因: 进入spring:bind标签源码你可以看到

Object target = requestContext.getModelObject(beanName);
if (target == null) {
throw new IllegalStateException("Neither BindingResult nor plain target object for bean name '" +
beanName + "' available as request attribute");
}

beanName= 的绿色部分

如果你是直接对某个页面进行请求,那么request中还没command这个对象

2.

在页面上加上

红色部分填上你的绑定类

 

解释一下,这个command类似于struts的引用的form对象,使用jsp:userBean是引用在spring-mvc.xml配置文件中的command对象。

你可能感兴趣的:(SSH)