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 | 31 |
Tags
- MariaDB
- SpringCamp2019
- SetMail
- 신미낙지
- 판교
- 오뚜기숯불소금구이
- 진1926
- nginx
- react component
- NVM
- DockerCompose
- 강다니엘
- SpockFramework
- 전나라동동공주
- State
- 바스트로37
- useEffect
- NapuCon2016
- docker
- 양살치살
- Hook
- Replacation
- 고릴라볼링장
- 오삼철판볶음
- BDD
- SpringCamp
- Java
- SpringCamp2017
- react
- Spring
Archives
- Today
- Total
목록MVC (1)
Note
Spring MVC
기본 용어 @RequestMapping DefaultAnnotationHandlerMapping에서 매핑 url과 컨트롤러 메소드 매핑정보 생성 클래스, 메소드 레벨에 사용 가능 url, method, parameter, header 정보를 통해 구분 가능 url에 ANT스타일의 와일드카드 사용 가능 상속 가능 @RequestMapping("/home") @RequestMapping("/home*") @RequestMapping("/home/**/action") @RequestMapping("/user/{userId}") @RequestMapping({"/", "/index"}) @RequestMapping(value="/user/{userId}", method=RequestMethod.GET) @Req..
Dev/Spring
2019. 11. 24. 16:38