1為拋出異常原因,2為異常解決方法。
原因: 進入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= <spring:bind path="command.spjg">的綠色部分
如果你是直接對某個頁面進行請求,那么request中還沒command這個對象
2.
在頁面上加上
<jsp:useBean id="command" class="com.ztenc.proj.bean.AFRFOAP" scope="request" ></jsp:useBean>
紅色部分填上你的綁定類
