본문 바로가기

Issues4

Intellij : setting() { not recognize tests in test folder } 좀 특이한 케이스인 것같아 기록을 남김 인텔리제이가 환경 설정 적용되지 않을 때 주로 체크 사항들은 다음과 같다.. - java 버전 체크 - File > Project Structure > Project > java 버전 체크 - File > Project Structure > Modules > Language level 버전 체크 - File > invalidated caches.. - Build > rebuild Project 문제 😵‍💫 이번엔 위에 있는 모든 것을 해도 src/test/java 하단 테스트 코드를 인식하지 못하였다 아이콘 비교 정상적으로 인식된 main 클래스에 비해 test 클래스는 그저 자바 파일로만 인식됨 ? 해결 👀 File > Project Structure > Mo.. 2024. 1. 5.
Git : ssh() { Github 에 SSH 등록 및 설정; } 물론 요즘엔 intellij에 Git 연동이 정말 잘 되어 있어서 터미널에서 이런 에러를 볼 기회가 자주 없다 나는 주로 git clone 을 ssh 가 아닌 https로 시작하는 버릇이 있어서 나같은 사람들을 위해 작성하는 포스팅 ㅎ remote: Support for password authentication was removed on August 13, 2021. remote: Please see https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authent.. 2023. 7. 20.
Github : how() { SSH 공개키 등록 } 귀찮게 나를 막아서는 깃허브 인증 강제로 토큰 생성하는 김에 시작한 블로그 포스팅 현 상태 remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. 1. SSH 존재 여부 확인 새 컴퓨터라 당연히 ssh를 생성한 적은 없지만 혹시 모르니,,, cat ~/.ssh/id_rsa.pub 그런 파일 or 디렉토리가 존재하지 않는다! 안.. 2022. 2. 1.
Docker : warning() { "Image may have poor performance, or fail, if run via emulation" } in mac docker-compose 로 띄운 이미지 컨테이너에서 amd64 경고 태그와 함께 Image may have poor performance, or fail, if run via emulation 문구를 확인할 수 있다. Intel CPU 기반의 macOS나 Linux에서는 linux/amd64 아키텍처의 이미지를 사용하지만, 애플 실리콘 M1의 경우 ARM64 아키텍처 이미지를 우선적으로 사용한다고 한다... 🐳 linux/amd64 아키텍처와 linux/arm64/v8 아키텍처 구분 Mac m1 환경에서 하단의 yaml 파일을 실행해보자 docker-compose.yaml version: '3.4' services: zookeeper: platform: linux/amd64 image: quay.io.. 2022. 1. 20.