1. Spring의 Resolver란?
https://velog.io/@gillog/Spring-HandlerMethodArgumentResolver-PathVariable-RequestHeader-RequestParam
[Spring] Resolver 란? Resolver 구현하기(HandlerMethodArgumentResolver)
Custom HandlerMethodArgumentResolver 만들어보기\[Advenoh - FRANK OH]HandlerMethodArgumentResolver는 Interface로써,Controller의 Argument(Parameter)에 지정된 변수들을,An
velog.io
이건..솔직히 아직 이해 좀 못하겠어서.. 천천히 다시볼 예정이다..
2. 어? 라디오버튼 이거 하나만 누르게 할 수 있던거 같은데?
라디오버튼끼리 같은 이름으로 지정한다면, 하나의 라디오 버튼만 선택이 된다.
예를들어
<input type="radio" name="game" value="PC"/>
<input type="radio" name="game" value="mobile"/>
<input type="radio" name="game" value="ETC"/>
라면 같은 이름중 버튼은 하나만 선택이 되는 것이다.
3. JSON.stringify()
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
JSON.stringify() - JavaScript | MDN
The JSON.stringify() method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified or optionally including only the specified properties if a replacer array is specified.
developer.mozilla.org
자바스크립트에 있는걸 JSON 문자열로 매우 편하게 바꿔준다. 그냥 저 함수 안에 넣고싶은거 넣어주면 된다. JSP에서 자주 쓸 것 같은 기능이다.
'ㄱ.공부' 카테고리의 다른 글
소프트웨어 개발 방법론이란? (0) | 2022.11.20 |
---|---|
UML 관계! (1) | 2022.11.19 |
Information Flow Diagram! (0) | 2022.11.17 |
Interaction Overview Diagram ? (0) | 2022.11.16 |
Timing Diagram 이란? (0) | 2022.11.15 |