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
- backtracking
- 운영체제
- back-end
- lambda
- java
- 백준
- 알고리즘
- DFS
- 프로그래머스
- 백트래킹
- 코틀린
- algorithm
- programmers
- 그래프
- kotlin
- 스프링
- 프로젝트
- 모던자바
- DP
- Brute-force
- 자료구조
- 자바
- OS
- LEVEL2
- TDD
- baekjoon
- Spring
- BFS
- Java8
- 네트워크
Archives
- Today
- Total
목록가게 상세 (1)
요깨비's LAB
[Spring Boot, Back-End] 5. 가게 상세 구현
1. 가게 상세 GET방식 /restaurants/{id} { "id":2019, "name":"식당", "address":"골목" } 형태의 JSON값 반환 2. Code 구현 I. 컨트롤러 단 구현 1. RestaurantControllerTest 작성 @RunWith(SpringRunner.class) @WebMvcTest(RestaurantController.class) // Restaurant 컨트롤러를 테스트하겠다는 어노테이션 public class RestaurantControllerTest { @Autowired private MockMvc mvc; // 이전 내용 @Test public void list() throws Exception { ... } @Test public void de..
웹 개발/스프링 부트 프로젝트(레스토랑 예약)
2020. 1. 7. 15:52