본문 바로가기

전체 글346

[2022.07.25] 개발 page에서 Controller & view(jsp) 위치 확인 방법 보호되어 있는 글 입니다. 2022. 7. 25.
[2022.07.22] How to get page path using JavaScript? [2022.07.22] How to get page path using JavaScript? localhost에서 개발을 하면서 해당 사이트의 path를 알아내는 방법에 대해 알아보도록 하자. localhost > F12 > console에 아래의 키워드 중 window.location.pathname 를 사용하면 된다. window.location.search '?ctgId=C10000000158&ctgId2=C10000000163&ctgId3=C10000000299&prdId=1000007880&brand=CALLAWAY&rentalMonth=' window.location.search; '?ctgId=C10000000158&ctgId2=C10000000163&ctgId3=C10000000299&pr.. 2022. 7. 22.
[2022.07.22] How to solve Web server failed to start. Port 8081 was already in use on Spring? [2022.07.22] How to solve Web server failed to start. Port 8081 was already in use on Spring? 해당 에러는 스프링을 실행 했을 때 해당 포트가 사용중이여서 발생하는 원인이다. 해결 방법 cmd > netstat -ano > taskkill /pid 1816 /f * taskkill /pid 1816(8081 포트를 사용하는 PID 번호) /f 2022. 7. 22.
[2022.07.21] Ajax Response example code 보호되어 있는 글 입니다. 2022. 7. 21.
[2022.07.21] How to solve git push error:failed to push some refs to on Sourcetree? [2022.07.21] How to solve git push error:failed to push some refs to on Sourcetree? 에러의 원인 git push error:failed to push some refs to - git에 저장된 파일과 내가 작성중인 파일 중 하나 이상 코드가 다르거나 파일이 없을 때 발생함 해결 방법 - 패치 > pull > 커밋 > push - 폐기 > 패치 > pull (중요하지 않는 코드라면 해당 방법을 추천) 2022. 7. 21.
[2022.07.18] How to create partition on windows? [2022.07.18] How to create partition on windows? -> 윈도우 > 하드 디스크 파티션 만들기 및 포맷 검색 > C드라이브 오른쪽 마우스 볼륨 축소 > 1000 > 축소 -> 할당되지 않음에 오른쪽 마우스 > 새 단순 볼륨 > 볼륨 크기 할당 > 드라이브 D,E,F, 설정 > 다음 > 마침 2022. 7. 18.