* form 객체 이름
HTML - <form name="이름"/>
Spring - <form:form commandName="이름"/>
=> commandName은 HTML렌더링 후 id가 되므로 getElementById()를 사용해서 참조할 수 있다.
* input 객체 이름
HTML - <input name="이름"/>
Spring - <form:input path="이름"/>
=> HTML의 input 태그도 <form:form> 태그 안에 있으면 input의 name이 커맨드객체의 멤버변수로
맵핑 가능하다.
* CSS 스타일 적용 (class)
HTML - <input class="textbox01"/>
Spring - <form:input cssClass="textbox01"/>
HTML - <form name="이름"/>
Spring - <form:form commandName="이름"/>
=> commandName은 HTML렌더링 후 id가 되므로 getElementById()를 사용해서 참조할 수 있다.
* input 객체 이름
HTML - <input name="이름"/>
Spring - <form:input path="이름"/>
=> HTML의 input 태그도 <form:form> 태그 안에 있으면 input의 name이 커맨드객체의 멤버변수로
맵핑 가능하다.
* CSS 스타일 적용 (class)
HTML - <input class="textbox01"/>
Spring - <form:input cssClass="textbox01"/>
http://blog.naver.com/jjhstr?Redirect=Log&logNo=60103005861 ---> 퍼온곳
'SPRING_SETTING > spring' 카테고리의 다른 글
spring에서 @Autowired와 @Resource의 차이(펌글) (0) | 2011.04.20 |
---|---|
JUnit test에서 application context를 로딩하기 (0) | 2011.04.05 |
핸들러 인터셉터 (0) | 2011.01.18 |
Spring 다중 파일 업로드 -> 퍼왔는데 어디지 ??? (0) | 2011.01.11 |
AOP의 개념 정리를 위한 TEST (0) | 2010.12.17 |