티스토리 뷰
728x90
1. 이 포스트는 http://localhost:8080/rest-test/api/students/{ variable } 형식의 요청을 처리한다.
1-1 { } 안의 변수를 PathVariable이라고 하고 이 값을 받아서 내부적으로 처리 할 수 있디.
2. RestController를 다음과 같이 수정한다.
package pe.pilseong.rest_test.restcontroller;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.PostConstruct;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import pe.pilseong.rest_test.entity.Student;
@RestController
@RequestMapping("api")
public class StudentController {
List<Student> students = new ArrayList<Student>();
@PostConstruct
public void loadDefaultData() {
students.add(new Student("pilseong", "Heo"));
students.add(new Student("suel", "Heo"));
students.add(new Student("noel", "Heo"));
}
@GetMapping("/students")
public List<Student> getStudents() {
return students;
}
@GetMapping("/students/{studentId}")
public Student getStudent(@PathVariable("studentId") int studentId) {
return this.students.get(studentId);
}
}
2-1 주제와 상관없지만 구현 편이성을 위해 하드코딩된 데이터를 인스턴스 변수에 두고 사용한다.
2-1-1 @PostConstruct를 통해서 생성 시에 데이터를 설정한다.
2-2-2 이전 포스트에 쓴 적이 있듯이 @PostConstruct를 쓰려면 추가라이브러리가 필요하다.
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
2-2-3 이 내용에 관한 것은 아래 포스트의 8번항목을 참고한다.
2-2 핵심적인 부분은 @PathVariable인데 그 변수를 HTTP method를 통해 {변수}로 받아온다.
2-2-1 아래 같은 경우 @PathVariable("studentId")에서 괄호 부분이 필요가 없다. 변수가 동일한 경우 생략가능하다.
2-3 결과는 다음 처럼 나온다.
728x90
'Spring > Spring REST' 카테고리의 다른 글
Spring : REST 전역 예외 처리 (0) | 2020.05.21 |
---|---|
Spring : REST 컨트롤러 예외처리 (0) | 2020.05.21 |
Spring : REST - Collection 객체 전송하기 (0) | 2020.05.21 |
Spring : REST - 기초 (0) | 2020.05.21 |
Spring : 기본적인 REST Controller (0) | 2020.04.26 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- Rest
- one-to-many
- Validation
- Angular
- form
- one-to-one
- 설정하기
- crud
- 하이버네이트
- RestTemplate
- 외부파일
- Security
- MYSQL
- 로그인
- hibernate
- login
- Many-To-Many
- 상속
- 매핑
- WebMvc
- 스프링부트
- 자바
- XML
- 설정
- Spring
- Spring Security
- jsp
- spring boot
- mapping
- 스프링
250x250