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

问题描述:
严重: Servlet.service() for servlet [jsp] threw exception
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'b008006Bean' available as request attribute
    at org.springframework.web.servlet.support.BindStatus.<init>(BindStatus.java:144)


我的错误原因:

controller中:
model.addAttribute("b008003Bean", b008003Bean);
return "/b008/b008006"; --错误原因

return "/b008/b008003"; --不会报错

jsp(b008006)页面中:
<sf:form action="<%=searchAction%>" role="form" method="post" commandName="b008006Bean" class="form-horizontal">
</sf:form>
jsp(b008003)页面中:
<sf:form action="<%=searchAction%>" role="form" method="post" commandName="b008003Bean" class="form-horizontal">
</sf:form>

猜你喜欢

转载自blog.csdn.net/qq_39822451/article/details/83818015