[Spring] The type HandlerInterceptorAdapter is deprecated
2022. 8. 10. 20:14
프로그래밍/Spring
The type HandlerInterceptorAdapter is deprecated 가 뜬다면 public class LoginInterceptor extends HandlerInterceptorAdapter{ ... } extends HandlerInterceptorAdapter 부분을 👉 implements HandlerInterceptor 혹은 AsyncHandlerInterceptor 로 변경해주기 public class LoginInterceptor implements HandlerInterceptor { ... }
[Oracle] 오라클 계정의 모든 테이블 삭제
2022. 8. 9. 20:14
프로그래밍/SQL
오라클 로그인 된 계정의 모든 테이블 삭제 1️⃣ 아래의 쿼리 실행하여 DROP문 생성 SELECT 'DROP TABLE ' || object_name || ' CASCADE CONSTRAINTS;' AS "DROP QUERY" FROM user_objects WHERE object_type = 'TABLE'; 2️⃣ 결과 전체 복사하기 3️⃣ 복사한 내용 붙여넣고 전체 실행하기
[Maven] Ojdbc6 Dependency 설정
2022. 8. 8. 20:01
프로그래밍/Spring
Ojdbc6 에러 Maven으로 ojdbc6를 설정 할 때 pom 에러가 나는 경우 별도의 Maven Repository를 설정 해야 함 maven repository 사이트 👉 https://mvnrepository.com/artifact/oracle/ojdbc6/11.2.0.3 pom.xml 예시 oracle ojdbc6 11.2.0.3 oracle ORACLE JDBC Repository http://www.datanucleus.org/downloads/maven2/
[Eclipse error] import 에러 : No projects are found to import
2022. 8. 5. 20:48
IDE/Eclipse
import 에러 : No projects are found to import import 인식을 못해서 위와 같은 에러가 뜨는 경우가 있음 💡 해결 방법 File > Open Projects from File System에서 폴더 가져오기
[Oracle] 오라클 비밀번호 만료(Oracle password has expired)
2022. 8. 4. 20:51
프로그래밍/SQL
오라클 비밀번호 만료(Oracle password has expired) cmd 창 키고 아래의 명령어 입력 sqlplus "/as sysdba" ALTER USER user_id IDENTIFIED BY new_password; 패스워드 변경하면 끝!
[ajax] ajax 통신 시 데이터 null 값
2022. 8. 3. 20:48
프로그래밍/Ajax
ajax 통신 시 controller에 데이터를 못 받아 온다면 ajax 요청 시 contentType: "application/json; charset=UTF-8", 이 부분이 포함되었을 가능성이 있음. 이 부분을 제거하고 확인해보기
[Spring error] Class not found [config set: /web-context]
2022. 8. 2. 20:44
프로그래밍/Spring
Class not found [config set: /web-context] error 해결 방법 1️⃣ 패키지명과 클래스명 확인해보기 2️⃣ jar 파일이 제대로 있는지 확인해보기 3️⃣ 둘 다 아니라면 Remove Spring Project Nature => Add Spring Project Nature를 해주기 1. 프로젝트 선택 후 우클릭 2. Sping Tools 클릭 3. Remove Spring Project Nature 클릭 4. 프로젝트 빌드 완료 후 Spring Tools 메뉴에서 Add Sping Project Nature 클릭
[Spring error] WARN : org.springframework.web.servlet.PageNotFound - No mapping for GET or POST error
2022. 8. 1. 20:24
프로그래밍/Spring
WARN : org.springframework.web.servlet.PageNotFound - No mapping for GET 에러가 뜨는 경우 1️⃣ 해당 URI를 처리하는 메소드를 생성 안한 경우 2️⃣ 해당 URI를 처리하는 메소드를 만들었지만 해당 클래스에 @Controller 어노테이션을 안 쓴 경우 3️⃣ 프로젝트 명 변경 시 프로젝트 명만 변경하고 프로젝트 안에 프로젝트 명 설정 부분을 모두 변경하지 않은 경우