Coding(98)
-
[IntelliJ] 추천 Plugin - CodeGlance Pro
간만에 Intellij를 업데이트 하니, 기존에 잘 사용하던 CodeGlance(링크)가 지원되지 않는다. 없으면 허전한 기능이기에 검색해서 찾아보니, 역시나 호환되는 플러그인이 존재한다!!! 이름이 비슷한 플러그인이 여러개 뜨는데 개발자가 다른걸 보니, 기존에 공개된 코드를 기반으로 수정을 한듯싶다. 그중에 가장 많은 사람들이 이용하는 CodeGlance Pro에 대해 적는다. CodeGlance Pro [Minimap 기능] Github 주소 https://github.com/Nasller/CodeGlancePro GitHub - Nasller/CodeGlancePro: Rework on CodeGlance support more feature. Rework on CodeGlance support m..
2023.01.19 -
[remote: Repository not found] intellij Github push 오류
intellij에 Github의 아이디가 잘 등록되서 update도 잘 받는 상황인데, 새로운 repository에 push 하려고 하니까, repository not found가 뜨면서 안되는 상황. 이것 때문에 프로젝트의 Git 을 몇번을 초기화하고, remote 연결을 몇번을 끊었다가 연결했는지 모름 ㅎㅎ 해결방법 본인은 (기존Github계정)에서 (신규Github계정)의 repository로 프로젝트를 새로 push 하려던거라 윈도우에 (기존Github계정)이 등록되어있었음. 이를 (신규Github계정)으로 변경해주면됨. 윈도우에서 [자격 증명 관리자] 검색 [Windows 자격 증명] 선택 [일반 자격 증명] 확인 [git:https://github.com] 확인 (어차피 추가하면 같은 주소로는..
2023.01.16 -
[Selenium] Spring boot에서 Selenium으로 크롤링하기.
Selenium 공식 주소 https://www.selenium.dev/ Selenium Selenium automates browsers. That's it! www.selenium.dev WebDriver 다운 주소(사용하는 Chrome과 맞는 버전으로 받아야함.) https://www.selenium.dev/documentation/webdriver/getting_started/install_drivers/ Gradle에 추가 1 implementation 'org.seleniumhq.selenium:selenium-java:4.0.0' cs 크롤링 Code WebDriverUtil.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ..
2022.01.30 -
[IntelliJ]Caused by: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
M1 맥북에어를 사고, IntelliJ를 설치 후에 처음으로 프로젝트를 Github에서 가져와서 실행시켰더니 뜨는 오류. groovy를 쓰지도 않았는데, 무슨 오류인지 몰라서 난감. 검색하면 안드로이드 스튜디오 관련 내용이 좀 있지만, 별다른 도움이 되지 않음. 해결법. 1. JDK 설치 - 기존프로젝트에서 사용하던 JDK를 설치하는게 좋음. 2. Project Structure - JDK를 설치하면 목록에 안뜰 수도 있음. - Add SDK를 눌러서 추가 후 진행하면 됨. 3. 설정 - Build, Execution, Deployment - Build Tools - Gradle - Gradle JVM 에 설치했던 JDK 선택. - 목록에 없으면 마찬가지로 Add JDK로 추가 후 선택. 끝.
2021.05.01 -
[Web]Modal 관련.
Modal 닫기. $('모달').modal('hide'); Modal 열기. $('모달').modal('show);
2021.03.30 -
[Web]Tempus Dominus 날짜 가져오기 getDate
getdatepicker.com/ Tempus Dominus Tempus Dominus Tempus Dominus is the successor to the very popular "eonasdan/bootstrap-datetimepicker". The plugin provide a robust date and time picker designed to integrate into your project. We're going through some changes right now and the docs will b getdatepicker.com 기본 사용법은 위에 잘 나와있음. 분명히 공홈 문서에 있겠지만, 잘 못 찾겠는거 위주로 업데이트. getDate 1 2 3 var date = $('#datet..
2021.03.30