[JSP] JSP에서 세션 값 가져오기
2022. 8. 12. 20:27
프로그래밍/JSP
JSP에서 세션 값 가져오는 방법 ❓ 세션에 저장해 놓은 userId를 가져오고 싶다면 ${sessionScope.userId}
[Ajax] ajax success 부분 안타는 오류
2022. 8. 11. 20:20
프로그래밍/Ajax
ajax success 작동 안함 form 태그안에 input 태그들에 ajax를 걸려고 할 때 controller 에서 return 까지 잘 가더라도 success부분에 안타는 경우가 있음 💡 form 태그를 지우거나 div 태그 등으로 변경 필요
[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/
[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 클릭