본문 바로가기

반응형

개발/오류

(6)
node_modules 폴더 빠르게 삭제 하기 node_modules 파일이 크기 때문에 rm -rf node_modules powershell 터미널 환경에서는 매개 변수 이름 'rf'과(와) 일치하는 매개 변수를 찾을 수 없습니다. 오류가 발생 gitbash 환경에서 명령어를 입력한다.
file upload error Expected MultipartHttpServletRequest: is a MultipartResolver configured? Request processing failed; nested exception is java.lang.IllegalArgumentException: Expected MultipartHttpServletRequest: is a MultipartResolver configured? solution servlet-context.xml 에추가 1234 Colored by Color Scriptercs
js,css 파일 업데이트 안될경우 js 파일을 수정하고 아무리 새로고침을 해도 업데이트된 내용이 반영 되지 않을 때가 있다.이유는 브라우저가 캐쉬를 사용하기 때문이다.브라우저의 캐쉬에 적재된 파일 내용으로 처리하기 때문에 새로 변경된 파일임을 브라우저가 인식하지 못할 때 업데이트 된 내용이 반영되지 않는다. 이럴 경우 js, css파일 뒤에 ?v=1을 붙인다. 이럴 경우 다른 URL로 인식되기 때문에 캐쉬된 파일이 사용되는 것을 막을 수 있다. 매번 version을 바꿔주기 귀찮을 경우 아래와 같이 현재시간을 활용한다.계속 변경된 파일로 인식 되기 때문에 js파일이 바로 업데이트 되어 편하게 사용할 수 있다. 참고 : http://kanu.tistory.com/30
Uncaught TypeError: $ is not a function 크롬 개발자 도구 디버깅에 아래와 같은 오류가 뜬다Uncaught TypeError: $ is not a function 검색결과 $가 안먹는다고 하는거 같았다.뒤에 (jQuery)를 붙여도 안됨. $(document).ready(function{}); 을 jQuery(document).ready(function($){});로 바꾸니까 해결되었다. 예약어 충돌나는데var t = $.noConflict(); 처럼 $을 t로 예약어 변경이 가능하다. https://stackoverflow.com/questions/12343714/typeerror-is-not-a-function-when-calling-jquery-function https://thecodingstuff.com/how-to-properly-u..
Ambiguous handler methods mapped for HTTP path HTTP Status 500 – Internal Server ErrorType Exception ReportMessage Request processing failed; nested exception is java.lang.IllegalStateException: Ambiguous handler methods mapped for HTTP path 'http://localhost:8080/com/se': {public java.lang.String x(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang..
이클립스 Save Failed 오류 오류 : Save All Failed Compilation unit name must end with .java, or one of the registered Java-like extensions I had an errant breakpoint set in the file. Removing the breakpoint resolved the problem.디버거 브레이크 포인트 지우면 문제 해결된다. breakpoint 를 찾아서 라인 오른쪽 클릭 -> disable breakpoint 클릭

반응형