반응형
Controller
@GetMapping("args")
public ResponseEntity<?> getArgs(@RequestParam(value = "msg") String msg, @RequestParam(value = "msg2") String msg2) {
return new ResponseEntity<>(msg + " / " + msg2, HttpStatus.OK);
}
호출
반응형
'Spring boot' 카테고리의 다른 글
JPA 복합 Primary Key 설정하기 (@IdClass) (0) | 2019.07.24 |
---|---|
@Data, @Getter, @Setter 가 제대로 작동하지 않을 때 (0) | 2019.07.23 |
다른 서버에 REST요청하기 (0) | 2019.07.16 |
Application을 시작하자마자 저절로 끝나버릴 때 (0) | 2019.07.12 |
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2019.07.11 |