Package org.sam.server.annotation.handle
Annotation Type PutMapping
-
@Retention(RUNTIME) @Target(METHOD) public @interface PutMapping
핸들러 클래스의 메소드에 선언하여 HTTP Method 중 PUT 요청을 처리한다.- See Also:
RequestMapping
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description ContentType
contentType
받을 수 있는 미디어 타입HttpMethod
method
받을 수 있는 HTTP Methodjava.lang.String
value
-
-
-
-
contentType
ContentType contentType
받을 수 있는 미디어 타입- Returns:
- 받을 수 있는 미디어 타입
- Default:
- org.sam.server.constant.ContentType.APPLICATION_JSON
-
-
-
method
HttpMethod method
받을 수 있는 HTTP Method- Returns:
- 받을 수 있는 HTTP Method
- Default:
- org.sam.server.constant.HttpMethod.PUT
-
-