일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 파이썬
- 한남동맛집
- 한성대맛집
- npm
- springboot
- 통영
- 공무원
- 성신여대맛집
- 자바스크립트에러처리
- 통영예쁜카페
- 방이편백육분삼십성신여대
- 성북구맛집
- 꼴뚜기회
- 통영에어비앤비
- 돈암동맛집
- 서울숲누룽지통닭구이
- ELK
- 국가직
- 퇴사후공무원
- 뚝섬역맛집
- gradle
- 스페인여행
- tomcat7
- JavaScript
- react
- ubuntu자바설치
- 성신여대편백집
- 통영여행
- 영화추천
- 방이편백육분삼십
- Today
- Total
목록IDE (13)
코린이의 기록
출처 : https://lalwr.blogspot.com/2018/04/intellij.html Editing Ctrl + Space : Basic code completion (the name of any class,method or variable) Ctrl + Shift + Space : Smart code completion (filters the list of methodsand variables by expected type) Ctrl + Shift + Enter: Complete statement Ctrl + P : 함수호출시 인수 정보 확인 (within method call arguments) Ctrl + Q : 코드에 대한 문서창 팝업 Shift + F1 : 코드에 대한 문서 인터넷 브..
"install" terminal command done Received install output: af06cc03-7565-4026-9930-b794c5913b01==37094== Server is listening on port xxxxx Spawning tunnel with: ssh vm2 -N -L localhost:xxxx:localhost:xxxxx Spawned SSH tunnel between local port xxxxand remote port xxxxx Waiting for ssh tunnel to be ready Tunnel(xxxxx) stderr: Permission denied, please try again. Tunnel(xxxxx) stderr: Permission den..
해결 방법 The problem here is remote repository files have been changed(i.e. someone else have changed and pushed the file to the repository which you changed in your local copy) and now you also edited the same.So when you try to push the file it throws an error. You have to merge the file and then commit the changes and push. Right click on your project -> Team ->Merge When you do this it will ask..
jsp 소스 수정 후 새로고침으로 반영하기 위해서 pom.xml아래 dependency를 추가한다. 12345 org.springframework.boot spring-boot-devtools true Colored by Color Scriptercs
Lombok은 java에서 흔히 Getter Setter 메소드를 편리하게 사용하기 위해 사용되는 라이브러리다.Lombok 라이브러리는 다른 라이브러리와 다르게 pom.xml에 정의를 해도 동작되지 않는다. 별도로 Lombok.jar를 다운로드 한 후 설치를 해주어야 한다. 1. Download Lombok https://projectlombok.org/download 2. STS/Eclipse 경로에 다운로드한 Lombok.jar 파일을 이동시켜준다. 3. lombok.jar 실행Specify location을 클릭하여 STS.exe/Eclipse.exe를 추가한 후 Install/Update를 클릭한다.아래와 같이 Install successful이 뜨면 성공 4. STS.ini (or Eclipse..
GIT URI 로부터 Project 가져오기1. Git -> Clone a Git Repository -> Clone URI -> Next2. Input the Git Repository Location and User/Password -> Next3. Select brances to clone from remote repository. -> Next4. Set a local directory to storage -> Finish5. Git에서 받은 소스를 Local Storage로 가져온 상태6. 프로젝트 우측 버튼 -> Team -> Switch To 로 Branch를 바꿀 수 있다.7. Branch를 바꾸면 Project name 옆에 Branch 이름(또는 master)이 생기게 된다. Branc..
Eclipse에서 Tomcat Server를 등록하려는데 아래와 같은 에러가 발생하였다. The Apache Tomcat installation at this directory is version 8.5.34. A Tomcat 8.0 installation is expected. 해결 방법 lib/catalina.jar/org/apache/catalina/util 에 있는 ServerInfo.properties를 수정해주어야 함(C:\Users\dev\tomcat\apache-tomcat-8.5.34-windows-x64\apache-tomcat-8.5.34\lib\catalina.jar\org\apache\catalina\util\) 123456789101112131415161718# Licensed ..