전체 글 91

[FastAPI] FastAPI [18] Request Files

https://fastapi.tiangolo.com/tutorial/request-files/ Request Files - FastAPI Request Files You can define files to be uploaded by the client using File. Info To receive uploaded files, first install python-multipart. E.g. pip install python-multipart. This is because uploaded files are sent as "form data". Import File Import File a fastapi.tiangolo.com 0. Request Files File 라이브러리를 사용하여 클라이언트가 파일..

[Spring] 스프링 입문강의 [2] - 라이브러리 살펴보기

[무료] 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 - 인프런 | 강의 스프링 입문자가 예제를 만들어가면서 스프링 웹 애플리케이션 개발 전반을 빠르게 학습할 수 있습니다., - 강의 소개 | 인프런 www.inflearn.com 1. log 관련 library slf4j와 logback등이 있다. 2. test 관련 library Java쪽은 junit이 핵심이다. mockito 혹은 assertj은 testing을 편하게 할때 도움이 된다. 3. 정리 Spring Boot Library spring-boot-starter-web spring-boot-starter-tomcat - 톰캣 (웹 서버) spring-webmvc - 스프링 웹 MVC spring-boot-star..

[Spring] 스프링 입문강의 [1] - 프로젝트 생성

[무료] 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 - 인프런 | 강의 스프링 입문자가 예제를 만들어가면서 스프링 웹 애플리케이션 개발 전반을 빠르게 학습할 수 있습니다., - 강의 소개 | 인프런 www.inflearn.com 0. 배울 것 간단한 웹 application을 다음과 같은 순서로 개발해본다. 스프링 프로젝트 생성 스프링 부트로 웹 서버 실행 회원 도메인 개발 웹 MVC 개발 DB 연동 - JDBC, JPA, 스프링 데이터 JPA 테스트 케이스 작성 이를 통해 스프링으로 web application을 개발할 때 어떤 기술들이 어떻게 사용되는지 전반적인 감을 잡고 큰 그림을 그려보는 것이 핵심 목표다. 스프링 기술 자체를 배우려 하지 말고! 내가 이걸 어떻게 사..

[FastAPI] FastAPI [15] Response model 2 - Other Return Type Annotations

https://fastapi.tiangolo.com/ko/tutorial/response-model/ Response Model - Return Type - FastAPI Response Model - Return Type Warning The current page still doesn't have a translation for this language. But you can help translating it: Contributing. You can declare the type used for the response by annotating the path operation function return type. Y fastapi.tiangolo.com 0. Other Return Type Ann..

[FastAPI] FastAPI [13] Response status code

https://fastapi.tiangolo.com/tutorial/response-status-code/ 응답 상태 코드 - FastAPI 응답 상태 코드 응답 모델과 같은 방법으로, 어떤 경로 작동이든 status_code 매개변수를 사용하여 응답에 대한 HTTP 상태 코드를 선언할 수 있습니다. @app.get() @app.post() @app.put() @app.delete() 기타 from fa fastapi.tiangolo.com 1. 응답 상태 코드 응답 모델과 같은 방법으로, 어떤 path operation이던 status_code 매개변수를 사용하여 아래와 같은 응답에 대한 HTTP 상태 코드를 선언할 수 있다. * status_code는 @method(decorator method)의 ..

[RDB] Database System - Introduction

https://www.db-book.com/ Database System Concepts - 7th edition www.db-book.com 0. Preface 데이터베이스와 관련된 책을 공부하며 알게된 내용을 정리 및 포스팅 하는 목적에서 시작했다. 남에게 지식을 정확히 전달할 때 배움은 완성된다고 믿기에 최대한 자신이 이해한 내용을 바탕으로 타인도 이해할 수 있게 설명해 보겠습니다. 1. Goals Database(이하 DB) system의 특징과 목적 preview DB가 사용자에게 무엇을 제공하는가 DB..

DataBase/RDB 2023.04.08