[Spring Error] 메이븐 프로젝트 서버 구동 시 에러 정리(+ pom.xml 플러그인 에러)
2022. 9. 1. 20:30
프로그래밍/Spring
서버 구동 시 에러와 pom.xml 에러 정리 1️⃣ 서버 실행시켰으나 아무런 반응이 없는 경우 2️⃣ configuring application listener of class org.springframework.web.context.ContextLoaderListener 에러 3️⃣ pom.xml 쪽에 에러가 뜨는 경우 서버가 실행되는데 파일이 하나도 안 올라옴 Properties > Deployment Assembly 에 경로가 잘 설정 되었는지 확인 예시 이미지처럼 설정이 없다면 설정해주기 ❌ 아무리 설정을 해도 다 지워진다면 {project}/.settings/org.eclipse.wst.common.component 이 파일을 확인해 볼 것 여기 아무것도 추가가 안되어 있다면 직접 설정해주기 ..
[jQuery] ajaxSubmit() - form 태그 submit 비동기 처리
2022. 8. 31. 20:31
프로그래밍/jQuery
ajaxSubmit() ❓ jQuery 플러그인으로 form태그 내부의 데이터를 비동기 처리해 줌 특징 1️⃣ submit이지만 비동기로 처리할 수 있음 2️⃣ 동작 이전의 함수처리, 이후의 함수처리도 정의할 수 있음 주의점 submit기능 동작 정의 후 return false;를 해줘야 함 이 부분을 처리하지 않으면 아무리 success, error옵션을 처리하여도 페이지가 submit이 먹히기 때문에 페이지 리로드 현상이 발생하고 결과값에 따른 동작(alert() 메시지 출력)을 정상적으로 처리 할 수 없음 사용 예시 form.html title: Content: form.js 참고 자료 👉 http://www.joshi.co.kr/index.php?mid=board_nCHS89&document_sr..
[Spring Error] cvc-id.3: A field of identity constraint 'web-app-filter-name-uniqueness' matched element 'web-app', but this element does not have a simple type.
2022. 8. 30. 20:32
프로그래밍/Spring
cvc-id.3: A field of identity constraint 'web-app-filter-name-uniqueness' matched element 'web-app', but this element does not have a simple type. 이런 에러가 뜬다면? web.xml에서 상단 web-app 관련 http://java.sun.com 명시된 부분들을 👉 http://JAVA.sun.com 혹은 http://Java.sun.com으로 변경
[Java] java.io.IOException: Server returned HTTP response code:500 for URL 해결 방법
2022. 8. 29. 20:37
프로그래밍/JAVA
java.io.IOException: Server returned HTTP response code:500 for URL 해결 방법 👉 나의 경우 파라미터 인코딩이 안돼서 나는 에러였음 인코딩한 파라미터를 url에 전달하면 오류 안남 적용 예시 String word = "parameter"; String encodeResult = URLEncoder.encode(word, "UTF-8"); String url = "http://localhost:8983/solr/solrProject/select?fq=title:"+encodeResult; 참고💡 URL 인코딩, 디코딩
[Java] URL 인코딩, 디코딩
2022. 8. 26. 20:30
프로그래밍/JAVA
URL 인코딩하는 방법 String word = '인코딩 할 문자열' String encodeResult = URLEncoder.encode(word, "UTF-8"); URL 디코딩하는 방법 String word = '디코딩 할 문자열' String decodeResult = URLDecoder.decode(word, "UTF-8");
[jQuery] 제이쿼리 엔터키 이벤트
2022. 8. 25. 20:21
프로그래밍/jQuery
jQuery 엔터키 이벤트 예시 👇 $("#selectBox").on("keyup",function(key){ if(key.keyCode==13) { alert("엔터키 이벤트"); } });
[JPA] org.hibernate.AnnotationException: @Temporal should only be set on a java.util.Date or java.util.Calendar property 해결 방법
2022. 8. 24. 20:17
프로그래밍/JPA
org.hibernate.AnnotationException: @Temporal should only be set on a java.util.Date or java.util.Calendar property 해결 방법 import java.sql.Date; 를 import java.util.Date; 로 변경
[Spring Scheduler] 스케줄러 간단한 설정 방법
2022. 8. 23. 20:49
프로그래밍/Spring
스케줄러 간단한 설정 방법 정리 프로젝트를 하다보면 스케줄러를 설정해야 할 일이 종종 있음 bean 설정 파일을 수정하고 스케줄러에 등록할 내용만 작성하면 됨 1️⃣ bean 설정 파일 수정 servelt-context.xml에 표시해놓은 내용 추가 코드 예시 👇 2️⃣ Scheduler Service 작성 위의 class에 작성해준 경로와 일치해야 함 5초마다 실행되는 스케줄러 작성 상세 설정이 필요한 경우 cron으로 작성하는 것이 편리 코드 예시 👇 package com.project.solr.common; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; @..