개발(79)
-
An internal error occurred during Error
An internal error occurred during: "Loading descriptor for ProjectName". org.eclipse.jst.j2ee.webapplication.internal.impl.WebApplmpl cannot be cast to org.eclipse.jst.javaee.web.WebApp 해결 방법 * 프로젝트 Properties > Project Facets > Dynamic Web Module 2.4(본인에 맞는 버전) 변경
2022.09.01 -
Linux SSH key 생성 방법
1. SSH Key 생성 : ssh-keygen -t rsa (1) 키를 저장할 경로 : /root/.ssh/id_rsa (2) passphrase(추가로 사용할 암호, 기본값 없음) (3) passphrase 확인 특별한 이유가 없다면 변경하지 않고 Enter 3번! 2. SSH Key 등록 : touch ~/.ssh/authorized_keys (authorized_keys 파일 생성) : chmod 755 ~/.ssh/authorized_keys (읽기 쓰기 권한 설정) 3. id_rsa.pub 내용을 authorized_keys 에 복사 출처 : https://shanepark.tistory.com/195
2022.08.24 -
eclipse indigo git 설치
1. plugin 경로에 egit.zip 파일 넣기 (2.3.1.201302201838-r) 본인에 맞는 egit 다운로드 https://wiki.eclipse.org/EGit/FAQ#Where_can_I_find_older_releases_of_EGit.3F EGit/FAQ - Eclipsepedia What is Git? Git is a distributed SCM/VCS, which means every developer has a full copy of all history of every revision of the code, making queries against the history very fast and versatile. The EGit project is implementing Ec..
2022.08.12 -
Eclipse Missing node.js 에러 처리 방법
Eclipse 를 실행 시 Missing node.js 메세지 창이 나왔습니다. (Could not find node.js. This will result in editors missing key features...) 해결 방법은 Windows에 node.js를 설치해야 합니다. eclipse 와 node.js가 연동되는 것 같습니다. 본인 이클립스에 맞게 node.js 를 설치해야 합니다. 일단 최신 버전으로 설치해줍니다. 처음에는 https://nodejs.org/ko/download/ 에서 최신버전을 설치했습니다. 다운로드 | Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org LTS ..
2022.08.11 -
import 안될 때 add library
[JSP] WEB-INF/ lib .jar 추가 (= jsp에서 import가 안될때) jsp에서 import가 잘 되는데 왜 자꾸 에러가 뜰까.. ? 에러 : org.Apache.jasper.JasperException: Unable to compile class for JSP:An error occurred at line: in the generated Java file Only a type can b.. truecode-95.tistory.com 출처 : https://truecode-95.tistory.com/20
2022.08.11 -
GitLab default branch 변경 방법
https://velog.io/@leyuri/Gitlab-default-branch-%EB%B3%80%EA%B2%BD-%EB%B0%A9%EB%B2%95 [Gitlab] default branch 변경 방법 gitlab 에서 repo의 default branch 를 바꾸고 싶었다. (ex. master 에서 happy 로) velog.io
2022.07.13