목록분류 전체보기 (104)
코드 잡동사니
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | sudo apt-key add - sudo add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ sudo apt update sudo apt install adoptopenjdk-8-hotspot # Java 8 / HotSpot VM sudo apt install adoptopenjdk-8-openj9 # Java 8 / OpenJ9 VM sudo apt install adoptopenjdk-11-hotspot # Java 11 / HotSpot VM sudo apt install adoptop..
fish shell 을 사용하는데 nvm 사용하는 방법입니다. # fisher 설치 curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher # edc/bass 설치 fisher install edc/bass # 함수 추가 vim ~/.config/fish/functions/nvm.fish function nvm bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv end # 실행 nvm ls 출처 https://eshlox.net/2019/01/27/how-to-use-nvm-with-fish-shell
rabbitmq 설치 erlang 을 설치해야 한다. 설치할 수 있는 방법은 2가지이다. yum install epel-release yum install erlang wget -O /etc/yum.repos.d/epel-erlang.repo http://repos.fedorapeople.org/repos/peter/erlang/epel-erlang.repo yum install erlang 다운로드 링크 여기서 다운받고 scp 로 전달하던가 filezila 로 옮기던가... xz -d [다운 받은 파일] tar -xvf [압축 푼 파일] 실행 [압축 푼 경로]/sbin/rabbitmq-server --detached 클러스터 .erlang.cookie 경로는 /root/.erlang.cookie 에 등..
에러 처리 방법 프로젝트 경로에서 build.gradle 안에 ... dependencies { testAnnotationProcessor 'org.projectlombok:lombok' } ...위 내용을 추가하면 된다. 굳굳구두굳굳ㄷ
Axios default Config { "transformRequest":[null], "transformResponse":[null], "timeout":0, "xsrfCookieName":"XSRF-TOKEN", "xsrfHeaderName":"X-XSRF-TOKEN", "maxContentLength":-1, "headers":{ "common":{ "Accept":"application/json, text/plain, */*" }, "delete":{}, "get":{}, "head":{}, "post":{ "Content-Type":"application/x-www-form-urlencoded" }, "put":{ "Content-Type":"application/x-www-form-urlen..
커밋을 먼저 하고 그 후에 .gitignore 를 작성했는데 무시가 안될 때 git rm -r --cached . git add .
@BeforeClass - static 으로 메서드 작성, 1회만 실행됨 @Before - @Test 메서드가 실행될 때 마다 실행된다 @BeforeEach - @BeforeEach = @Before @BeforeAll - @BeforeAll = @BeforeClass https://www.baeldung.com/junit-before-beforeclass-beforeeach-beforeall @Before vs @BeforeClass vs @BeforeEach vs @BeforeAll | Baeldung Learn about the difference between JUnit annotations that can be used to run logic before tests. www.baeldung.com