본문 바로가기

오류74

java.lang.IllegalArgumentException: 요청 타겟에서 유효하지 않은 문자가 발견되었습니다. 유효한 문자들은 RFC 7230과 RFC 3986에 정의되어 있습니다. [] 특수문자 인식 못함 해결 : [ 부분 %5B 대체 ] 부분 %5D 대체 http://localhost:8081/sample/ex02Bean?list[0].name=aaa&list[2].name=bbb http://localhost:8081/sample/ex02Bean?list%5B0%5D.name=aaa&list%5B2%5D.name=bbb 2022. 12. 21.
메이븐 오류 Missing artifact com.oracle:ojdbc7:jar:12.1.0.2 https://velog.io/@virtualplastic/Spring-스프링과-오라클DB-연결 Spring | 스프링과 오라클DB 연결 - ojdbc6 pom.xml에 태그와 태그를 추가한다.태그는 태그 안에 넣어야 한다.만 추가하면 불러오지 못할 수 있다.추가 후 프로젝트 우 velog.io 메이븐 오류 Missing artifact com.oracle:ojdbc7:jar:12.1.0.2 해결 : pom.xml에 태그와 태그를 추가한다. 태그는 태그 안에 넣어야 한다. 만 추가하면 불러오지 못할 수 있다. oracle ORACLE JDBC Repository http://www.datanucleus.org/downloads/maven2/ oracle ojdbc6 11.2.0.3 추가 후 프로젝트 우클.. 2022. 12. 20.
Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core” https://stackoverflow.com/questions/13285826/can-not-find-the-tag-library-descriptor-for-http-java-sun-com-jsp-jstl-core Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core” I have included this at the very top of my JSP page: I already placed the JSTL JAR file in the WEB-INF/lib directory. But st... stackoverflow.com Can not find the tag library descriptor for “http:/.. 2022. 12. 20.
스프링 실행 오류 (응답없음) 환경 설정 추가 1. -vm 추가 2. C:\ jdk11 버전 경로로 수정 2022. 12. 19.
ORA-28040: 일치하는 인증 프로토콜 없음, No matching authentication protocol 해결 : ojdbc 를 ojdbc7 로 변경 원인 : 기존 ojdbc6.jar 를 사용하는데, Oracle 11g 에서 Oracle 21c 로 업데이트 하였을 경우 버젼 차이에 의한 에러 발생 오라클 버전 확인 SELECT * FROM PRODUCT_COMPONENT_VERSION; ORA-28040: No matching authentication protocol 2022. 12. 18.
mysql_Data too long for column com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column 'ofile' at row 1 이미지 업로드 시 발생 alter table 테이블명 modify 컬럼명 varchar(사이즈); 로 사이즈 변경하니 해결됐다 2022. 12. 12.