Dev_Log 78

[Eclipse] ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

[ 에러 발생 상황 ] 완성된 maven프로젝트를 import후 프로젝트 시작시 구동 실패ClassNotFoundException: org.springframework.web.context.ContextLoaderListener  [ Solution ] 구글링 해보면 보통 아래방법들이 나온다1. Proejct > clean해보기2. 프로젝트 선택후 우클릭 > Maven > Update Project > ForceUpdateToSnapshots/Releases체크후 OK하기3. Servers에 톰캣 삭제후 재생성 해보기4. 이클립스 재시작 해보기위에방법 다해봤는데도 해결되지 않을때아래 방법으로 해결했는데원인은 이클립스가 MavenDependencies를 제대로 읽어오지 못해서 그런거같다프로젝트 속성에서 J..

Dev_Log 2024.10.28

[Eclipse] Cannot find a Java installation on your machine matching this tasks requirements

[ 에러 발생 상황 ]  JDK17버전으로 환경변수 설정 완료후sts4.25.0버전으로 스프링부트 프로젝트를 생성했는데프로젝트가 빌드에 실패하는 에러 발생FAILURE: Build failed with an exception. * What went wrong: Could not resolve all dependencies for configuration ':compileClasspath'. > Failed to calculate the value of task ':compileJava' property 'javaCompiler'.    > Cannot find a Java installation on your machine matching this tasks requirements: {languageVe..

Dev_Log 2024.10.17

[Selenium] java.io.OutputStream com.google.common.io.ByteStreams.nullOutputStream()

[ 에러 발생 상황 ] 01. org.openqa.selenium.WebDriver를 이용하여 new ChromeDriver();코드 수행시 에러 발생 WebDriver webDriver = new ChromeDriver(); // 해당 코드 수행시 // 에러 발생 java.lang.NoSuchMethodError: 'java.io.OutputStream com.google.common.io.ByteStreams.nullOutputStream()' [ Solution ] 01. 해당 라이브러리를 추가해준뒤 프로젝트를 리빌드 해준다 implementation group: 'com.google.api-client', name: 'google-api-client', version: '2.2.0'

Dev_Log 2023.07.03

[MS SQL] 드라이버가 SSL(Secure Sockets Layer) 암호화를 사용하여 SQL Sever로 보안 연결을 설정할 수 없습니다.오류: "PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:unable to find valid cer..

[ 에러 발생 상황 ] 01. MS SQL 2008을 마이바티스와 연동후 프로젝트 실행하면 에러가 발생 com.microsoft.sqlserver.jdbc.SQLServerException: 드라이버가 SSL(Secure Sockets Layer) 암호화를 사용하여 SQL Sever로 보안 연결을 설정할 수 없습니다. 오류: "PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target". ClientConnectionId:154ff66f-f441-4885-a1a9-3b76e9182e5c [ Solutio..

Dev_Log 2023.03.28

[SpringQuartz] FOR UPDATE 절은 DECLARE CURSOR에서만 사용할 수 있습니다.

[ 에러 발생 상황 ] 01. SpringQuartz를 MS-SQL과 연동하기위해 세팅후 프로젝트 구동 02. 아래 에러 발생 org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2 org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1d204519 jd..

Dev_Log 2023.03.06

[SpringBoot] 지원되지 않는 문자 집합(클래스 경로에 orai18n.jar 추가)

[ 에러 발생 상황 ] 01. 오라클DB 연동되어있음 02. 프로젝트 시작시 아래 에러 발생 java.sql.SQLException: 지원되지 않는 문자 집합(클래스 경로에 orai18n.jar 추가): KO16KSC5601 [ Solution ] 01. 아래 해당하는 디펜던시 추가후 // https://mvnrepository.com/artifact/com.oracle.ojdbc/orai18n implementation group: 'com.oracle.ojdbc', name: 'orai18n', version: '19.3.0.0' 02. Gradle 또는 Maven 리빌드

Dev_Log 2023.02.17
728x90
반응형