[IntelliJ] JDK 설치
·
🗂ㅤJAVA
1) Adoptium 사이트 접속 https://adoptium.net/ Home | Adoptium The Adoptium® Working Group The Adoptium Working Group promotes and supports high-quality runtimes and associated technology for use across the Java ecosystem. Our vision is to meet the needs of Eclipse and the broader Java community by providing runtimes adoptium.net 2) 위 그림대로 본인에게 해당하는 운영체제, 아키텍처, 원하는 버전을 선택 후, 3) JDK 파일을 다운받아 실행한다. JDK ..
jQuery CDN
·
🗂ㅤJAVA
https://releases.jquery.com/ jQuery CDN The integrity and crossorigin attributes are used for Subresource Integrity (SRI) checking. This allows browsers to ensure that resources hosted on third-party servers have not been tampered with. Use of SRI is recommended as a best-practice, whenever libr releases.jquery.com test.html
[MySQL] 버전 확인 방법
·
🗂ㅤJAVA
== MySQL 서버 버전 확인방법 == SELECT VERSION(); SHOW VARIABLES LIKE '%VERSION%' == MySQL 클라이언트 버전 확인방법 == mysql --version mysql -V
[JAVA] JSON-simple 설치
·
🗂ㅤJAVA
Gradle 에서 추가할 경우 implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' Maven 에서 추가할 경우 com.googlecode.json-simple json-simple 1.1.1 직접 다운로드 *해당 페이지에서 직접 다운로드도 가능 https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1.1
[IntelliJ/Spring] 쿼리 파라미터 로그 설정
·
🗂ㅤJAVA
1) application.yml 파일에 org.hibernate.type: trace 추가하기 SQL 실행 파라미터를 로그로 남길 수 있다. 📌 주의사항 : 스프링부트 2.x 과 3.x 버전에 따라 다름 스프링 부트 2.x, hibernate5 org.hibernate.type: trace 스프링 부트 3.x, hibernate6 org.hibernate.orm.jdbc.bind: trace 2) 외부 라이브러리 사용 (스프링부트 2.x 기준) 스프링 부트 사용시 라이브러리만 추가하면 됨 (build.gradle 파일 > dependencies { } 안에 추가) implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.5.6'
[IntelliJ] 스프링부트 devtools 추가 설치
·
🗂ㅤJAVA
1) build.gradle 파일 > dependencies { } 안에 아래의 코드 추가하여 설치하기 implementation 'org.springframework.boot:spring-boot-devtools' 2) 설치 후 서버 한번 내렸다가(Stop) 올리기(Run) > 이때, 콘솔 창에 [restartedMain] 이라고 뜨면서 실행이 됐다면 잘 설치되어 실행된 것임 3) 이후부터는 서버 껐다 켰다할 필요없이, 서버는 켠 상태로 상단에 Build > Recompile 만 눌러주면 됨
[IntelliJ] Gradle 대신에 자바 직접 실행으로 설정하는 법
·
🗂ㅤJAVA
File > Settings > Build, Execution, Deployment > Build Tools > Gradle > 빨간 박스 표시된 곳 IntelliJ IDEA 로 바꿔주기 *최근 IntelliJ 버전은 Gradle로 실행을 하는 것이 기본 설정으로 되어 있는데, 그렇게 되면 실행속도가 느리다. 다음과 같이 변경하면 자바로 바로 실행해서 실행속도가 더 빨라짐
[IntelliJ] Lombok 설치 및 추가 설정
·
🗂ㅤJAVA
1) File > Settings > Plugins > lombok 검색 후 install *검색 리스트에 lombok이 안보인다면 상단에 위치한 marketplace 옆에 있는 installed를 눌러서 그곳에서 검색해보기 *Lombok : 자바에서 보일러플레이트 코드(getter, setter, toString...) 등 불필요하게 반복적인 코드들을 간편하게 어노테이션으로 설정할 수 있게 해주는 라이브러리. 2) 이어서 Annotation processors > Enable annotation processing 체크 후 OK 버튼 누르면 완료 *Annotation processors : 자바 컴파일러 플러그인의 일종, 어노테이션의 코드베이스에 대해 검사 & 수정 & 생성하는 역할. Lombok을 사..
[IntelliJ] Create New Test 단축키
·
🗂ㅤJAVA
[ window ] ctrl + shift + T [ Mac ] command + shift + T
[IntelliJ] Cache(캐시) 삭제
·
🗂ㅤJAVA