일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- reactjs
- Spring
- sql
- Intellij
- java
- javascript
- 컴포넌트
- 개발
- DATABASE
- component
- JS
- GIT
- 자바
- React
- 스프링
- 리액트
- restapi
- 보안취약점
- springboot
- 데이터베이스
- mssql
- 개발공부
- 스프링부트
- table
- 자바스크립트
- EXTJS
- Vue
- crud
- jdk
- 쿼리
- Today
- Total
목록springboot (8)
준준의 기록일지
https://effortguy.tistory.com/124
Hi, Today we are going to talk about how to upload or set configuration of application.yml to Heroku. my application as backend(springboot) and frontend (vue.js) was working properly in local. But, I got into a trouble that when I deploy on Heroku my backend application. It kept occurring CORS Policy Problem on Network of Chrome DevTool. So, I tried to figure out Spring security to solve Cors po..
개요 Github에 프로젝트 연동하여 프로젝트를 진행중이다. github에 프로젝트를 연동한 뒤 작업을 하는 도중, heroku 계정 정보, Amazon S3에 필요한 계정 정보(access key, secret key)를 담은 application.yml이 github에 올라가 있는 것을 확인했다. 바로, gitignore 작업이 필요한 상황, 그렇지 않을 경우 계정정보를 전부 노출하여 엄청난 과금이 생길수도..! 해결방안 현재 git 관련 캐시를 제거해주고 다시 commit하면 간단하게 적용 완료! git rm -r --cached . git add . git commit -am "Remove ignored files" 출처: https://cppmaster.tistory.com/entry/Git에-..
인텔리제이는 Community version || Ultimate version 으로 나뉜다. 나는 무료버전인 Community 을 다운로드 받았다. 여기서 문제! Community version에서 spring boot project를 생성할 때 spring initializr 가 없는 것을 알 수 있다. 확인해 본 결과, Community version에서는 spring initializr를 지원하지 않는다. 그러므로 spring boot project를 생성하기 위해서는 start.spring.io/ 사이트에서 직접 생성해주고 import해줘야한다. start.spring.io/ 사이트에서는 간편하게 spring boot project 관련 버전 정보나 의존성을 추가해줄 수 있다. 위에와 같이 설정..