Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- php
- @RequestBody
- MYSQL
- SSL
- jquery
- 네이버스마트 에디터
- Oracle
- 날짜
- 호환성
- 웹 플랫폼 설치 관리자
- checbox
- DB
- spring form tag
- java
- exception
- switch
- maven
- null
- HTML5
- 스크립트
- 한글
- json
- 오라클
- 전자정부 표준프레임워크
- 톰캣
- 이클립스
- JSTL
- html
- RADIO
- 문자열
Archives
- Today
- Total
개인적인 정리
Neither BindingResult nor plain target object for bean name 본문
전자정부표준프레임워크/Exception 및 Error
Neither BindingResult nor plain target object for bean name
yeon.Biju 2019. 1. 30. 15:45java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'aaaaVO' available as request attribute
과 같은 Exception 발생
1. java
@RequestMapping(value="aaaa.do",method=RequestMethod.GET)
블라블라...
2. jsp단
<form:form commandName="aaaaVO" name="wasteFrom" id="wasteFrom" method="post" enctype="multipart/form-data">
</form:form>
처럼 사용하는데 Exception 이 발생하였다.
--> java단에서 aaaaVO 를 선언해서 model에 넣어주지 않아서 생긴문제
--> java 단에 아래내용 추가(비어있는 AaaaVO를 jsp단으로 넘겨준다)
model.addAttribute("aaaaVO", new AaaaVO());
'전자정부표준프레임워크 > Exception 및 Error' 카테고리의 다른 글
501 HTTPS Required. (0) | 2020.08.25 |
---|---|
'com.mysql.jdbc.Driver'. This is deprecated (0) | 2020.02.17 |
The import com.mysql cannot be resolved (0) | 2020.02.17 |
Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986 (0) | 2019.03.15 |
The specified JRE installation does not exist (0) | 2018.12.14 |
Scala java.lang.NoSuchMethodError: scala.Predef$.augmentString error (0) | 2018.12.14 |
java.lang.ClassNotFoundException: com.twitter.Regex (0) | 2018.12.14 |
Parameter index out of range (1 > number of parameters, which is 0). (0) | 2018.12.06 |
Comments