[PS][Git] Gitlab 에서 Github 로 저장소 옮기기 + commit 유지
2023. 6. 9. 01:56
Problem Solving
방법 터미널 켜거나 Git bash 켜기 원본 저장소 복사 (Github 로 옮길 원본 Repository 주소) git clone --mirror [원본 레포지토리 경로] 해당 폴더 안으로 이동 cd [원본 저장소 이름].git Github 에 Repository 를 새로 한개 만들고, 이동할 원격 레포지토리 주소 넣기 git remote set-url --push origin [이동할 원격 레포지토리 주소] push 하기 git push --mirror 출처 1. https://jennnn.tistory.com/86
[Database] Datagrip - 'Field doesn't have a default values' 해결
2023. 6. 7. 01:03
Problem Solving
해결 방법 1. C 드라이브 -> ProgramData -> MySQL -> MySQL Server (본인 버전) -> my.ini 파일 열기 HTML 삽입 미리보기할 수 없는 소스 문제 해결 흐름 'this view is read-only' 문제 해결하고 insert 로 UUID에 값 넣으려니까 또 에러가 생겼다. https://stackoverflow.com/questions/15438840/mysql-error-1364-field-doesnt-have-a-default-values HTML 삽입 미리보기할 수 없는 소스 출처 1. https://stackoverflow.com/questions/15438840/mysql-error-1364-field-doesnt-have-a-default-value..
[Database] Datagrip 'this view is read-only' 해결
2023. 6. 7. 00:38
Problem Solving
해결 방법 문제가 되는 테이블 삭제하고 해당 테이블 다시 생성하기 문제 해결 흐름 HTML 삽입 미리보기할 수 없는 소스 https://stackoverflow.com/questions/32709655/datagrip-cannot-apply-changes-this-table-is-read-only-cell-editor-changes-canno 여기서 알려주는대로 다 해봤지만 먹히지 않았다. 그래서 무식하면서도 확실한 방법을 썼다. 삭제하고 다시 생성하기...ㅎㅎ 이 이후부터는 값이 잘 입력 됐다. 더 나은 방법은 없었을지 고민해야할듯 출처 1. https://stackoverflow.com/questions/32709655/datagrip-cannot-apply-changes-this-table-is-r..
[PS] Spring Boot + Mustache 한글 깨짐 해결
2023. 5. 13. 20:25
Problem Solving
해결 방법 1. Project -> src -> main -> resources > application.properties 로 이동 HTML 삽입 미리보기할 수 없는 소스 문제 해결 흐름 https://cloudstudying.kr/lectures/423 05 MVC 패턴 | CloudStudying cloudstudying.kr 위 포스팅 보면서 스프링 기초를 쌓고 있는데, localhost:8080/article 에 들어가면 한글이 깨져서 나왔다. application.properties 에 server.servlet.encoding.force-response=true 를 추가하고 재시작하니 한글 정상 출력 되었다. 간단하게 해결해서 다행! 참고 1. https://corin-e.tistory.co..
[PS][종합프로젝트] Swagger 404 not found 해결
2023. 5. 9. 22:47
Problem Solving
해결 방법 Spring boot, Swagger의 버전을 맞추기 HTML 삽입 미리보기할 수 없는 소스 문제 해결 흐름 Spring Boot + Swagger 3.0.0 적용 Spring Boot 2.5.8 + Swagger 3.0.0 을 적용해봅시다! velog.io 위 포스트를 참고해서 의존성도 추가하고, Configuration 클래스도 추가하고, Controller도 생성하고, http://localhost:8080/swagger-ui/index.html 로 접속해봤는데 Whitelabel 404 not found 가 떴다. https://devlog-wjdrbs96.tistory.com/410 https://www.appletong.com/entry/swagger30-404-not-found h..