본문 바로가기

전체 글

(37)
엘라스틱서치 바이블 보호되어 있는 글입니다.
[Spring Boot] Interceptor 에서 request/response body 사용하기 보호되어 있는 글입니다.
[Spring Boot] Interceptor 적용하기 보호되어 있는 글입니다.
Multipart 전송의 함정 - HTTP POST 전송만 가능한가? 보호되어 있는 글입니다.
[React] Document Site! 1. Create React App (한글) https://ko.reactjs.org/docs/create-a-new-react-app.html (영어) https://create-react-app.dev/docs/getting-started/ 2. Redux (한글) https://deminoth.github.io/redux/ (영어) https://redux.js.org/ 3. React-Redux (영어) https://react-redux.js.org/ 4. Redux Toolkit (영어) https://redux-toolkit.js.org/
[Git] GitHub Repository Create And Use 1. GitHub 에서 새로운 Repository 를 생성 GitHub Homepage 바로가기 2. Git Init .git이라는 하위 디렉토리를 만들어 git 저장소로 지정 $ git init 3. Git Remote 원격저장소 연결 $ git remote add origin github_repository_address 4. Git add 해당 파일을 추적(stage)시키는 명령어로 추적되고 있는 파일만 커밋에 포함 $ git add . 5. Git Commit 추적(stage)된 파일에 Commit 를 메세지 추가하여 로컬 저장소에 반영 $ git commit -m "message" 6. git push 변경 이력을 원격 저장소에 반영 이때 origin은 원격 저장소(remote)의 주소, mas..
[Spring] pom.xml 첫줄 에러 Spring Tool Suite 를 사용하 스프링 또는 스프링부트 프로젝트를 생성할 때 가끔 pom.xml 의 첫번째 줄 에러(unknown 에러)가 발생하는 경우가 있다. 이를 해결하는 방법으로 2가지 방법을 소개하겠다. 1. 의 spring version 을 변경한다. org.springframework.boot spring-boot-starter-parent 2.3.0.RELEASE org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE 2. Maven Plugin 버전을 명시해준다. 3.1.1 1.8
[Git] GitHub Page 사용하기 GitHub 페이지는 react-scripts@0.2.0 이상에서 사용할 수 있다. https://create-react-app.dev/docs/deployment/ 1. package.json 파일을 열어 homepage 필드를 추가한다. GitHub Page 의 주소는 기본적으로 "UserId.github.io/RepositoryName" 의 형태로 프로젝트 페이지를 이용한다. Create React App 은 홈페이지 필드를 사용하여 빌드된 HTML 파일의 루트 URL 을 결정한다. 아래의 3가지 방법 중 택 1 하도록 한다. // gh-pages 기본 주소(프로젝트 페이지)로 입력하는 방법. "homepage": "https://myusername.github.io/my-app" // 또는 Git..