일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring @mapper
- Spring
- @Builder @NoArgsConstructor
- docker 로그
- doker logs tail
- spring JPA DB Connection
- 도커 logs
- spring mapper
- vuecomponent
- CrudRepository update
- Transactions Propagation Option
- Data Annotation
- AllArgsConstructor
- spring repository
- 자바버그수정
- spring DB Connection
- Spring JPA Specification
- JpaRepository update
- spring mapper annotation
- Vue
- NoArgsConstructor
- JPA DB 다중 Connection
- JPA DB Connection 다중
- JAVA Exception 종류
- mapper annotationo
- vueslot
- 도커 컨테이너 로그
- 도커 로그 확인
- spring JPA DB multi Connection
- repository annotation
- Today
- Total
목록Server (2)
개발을 잘하고 싶은 개발자
리눅스 서버에서 log 파일을 vi, tail, cat 등등 명령어로 볼 줄은 알았지만 도커에 따로 docker logs가 있는 줄 몰랐다!! 나도 이제 도커 로그를 맘대로 다룰 줄 알게 되었어~ document https://docs.docker.com/engine/reference/commandline/logs/ docker logs docker logs: The `docker logs` command batch-retrieves logs present at the time of execution. > **Note** > > This command is only functional for containers that are started with the... docs.docker.com 사용법 $ d..

참고 https://meetup.toast.com/posts/92 잘 설계된 REST API는 리소스에 대한 응답 또한 잘 출력한다. 정확한 응답의 상태 코드만으로도 많은 정보를 전달할 수가 있기 때문에 응답의 상태코드 값을 명확히 돌려주는 것은 매우 중요하다 상태코드 200 OK 클라이언트의 요청을 정상적으로 수행함 201 Created 클라이언트가 어떠한 리소스 생성을 요청 -> 해당 리소스가 성공적으로 생성됨(POST를 통한 리소스 생성시) 상태코드 400 Bad Request 클라이언트의 요청이 부적절 할 경우 사용 401 Unauthorized 미승인. 클라이언트가 인증되지 않은 상태에서 보호된 리소스를 요청했을 때 사용 (ex. 로그인하지 않은 유저가 인증이 필요한 리소스를 요청했을 때) 40..