Backend
[오류해결] org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ~
[오류해결] org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ~
2024.03.05오류 발생 스프링부트에서 Author 라는 Entity와 AuthorRepository라는 Repository를 호출하는 코드를 실행했을 때 다음 오류가 발생했다. org.springframework.beans.factory.UnsatisfiedDependencyException Caused by: org.springframework.beans.factory.BeanCreationException Caused by: java.lang.IllegalArgumentException 오류 상세 보다 자세한 오류 내용은 다음과 같다. 3단계에 걸쳐 실제 호출해서 오류가 발생한 지점부터 근원지까지의 오류 발생 내용이 기록되어있다. 오류 내용을 제외한 나머지 내용은 길어서 생략했다. 2024-03-05T09:06:..
[오류해결::Ruby] OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources
[오류해결::Ruby] OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources
2023.05.05문제 발생 상황 새로 나온 Ruby 3.2.2버전을 frum으로 설치하고 bundler를 설치하려는데 오류가 발생했다. gem install bundler를 입력하자 아래와 같이 오류가 나왔다. ➜ gem install bundler ERROR: While executing gem ... (Gem::Exception) OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources (Gem::Exception) (이하 생략) 원인 분석 Ruby를 설치하는 과정에서 OpenSSL 관련 의존성이 누락된것이 원인이었다. 해결 방법 Ruby를 설치하는 과정에서 OpenSSL 의존성을 정확하게 참조할 수 있도록 해야한다. 만약 ..
[오류해결::Ruby] frum ruby 3.2.2 install error
[오류해결::Ruby] frum ruby 3.2.2 install error
2023.05.03문제 발생 상황 frum install 3.2.2 하는 경우 아래와 같은 문제가 발생했다. $ frum install 3.2.2 ==> Downloading https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.2.tar.xz ==> Extracting ruby-3.2.2.tar.xz ==> Building Ruby 3.2.2 error: Can't build Ruby: make failed: . ./vm_opts.h parse.c:9130:9: warning: variable 'yynerrs' set but not used [-Wunused-but-set-variable] int yynerrs = 0; ^ 1 warning generated. libffi_versio..
[오류해결::JPA] Caused by: org.hibernate.exception.SQLGrammarException: could not prepare statement
[오류해결::JPA] Caused by: org.hibernate.exception.SQLGrammarException: could not prepare statement
2022.06.24문제 발생 JpaRepository에 @Query 애너테이션에 nativeQuery = true 옵션을 추가하고 서버를 실행하니 다음과 같은 오류들이 발생했습니다. 오류 Caused by: org.hibernate.exception.SQLGrammarException: could not prepare statement Caused by: org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "CREATEDATE" not found; SQL statement: FAILED org.springframework.dao.InvalidDataAccessResourceUsageException at QueryAnnotationTest.java:43 Caused by: org.hibe..