Backend
[오류해결::JPA] Caused by: java.net.ConnectException: Connection refused (Connection refused)
[오류해결::JPA] Caused by: java.net.ConnectException: Connection refused (Connection refused)
2022.06.21Caused by: java.net.ConnectException: Connection refused (Connection refused) 문제 발생 상황 서버를 실행하니 다음과 같은 오류들이 발생했습니다. 오류 Caused by: java.net.ConnectException: Connection refused (Connection refused) Caused by: org.h2.jdbc.JdbcSQLNonTransientConnectionException: Connection is broken Caused by: org.hibernate.exception.JDBCConnectionException: Unable to open JDBC Connection for DDL execution Caused b..
[오류해결::JPA] Caused by: org.hibernate.AnnotationException: No identifier specified for entity
[오류해결::JPA] Caused by: org.hibernate.AnnotationException: No identifier specified for entity
2022.06.21문제 발생 상황 서버를 실행하니 Caused by: org.hibernate.AnnotationException: No identifier specified for entity: com.example.demo.domain.Board 라는 오류가 발생했습니다. 원인 분석 Entity에 Id를 설정하지 않은 경우 발생하는 오류입니다. 저는 아래와 같은 Entity를 추가했을 때 오류가 발생했습니다. 코드에서 확인 가능하듯이 Id로 선택한 클래스 멤버 변수가 없습니다. package com.example.demo.domain; import lombok.Getter; import lombok.Setter; import lombok.ToString; import javax.persistence.*; import ..
[오류 해결::Ruby] Ruby 3.0.1 mysql2 설치 오류
[오류 해결::Ruby] Ruby 3.0.1 mysql2 설치 오류
2022.02.02오류 발생 Ruby 3.0.1버전으로 Rails 7을 사용하는 중 bundle install 실행 시 mysql2를 설치하는 과정에서 오류가 발생했습니다. iksflow@iksflow archive % bundle install Fetching gem metadata from https://rubygems.org/........... Resolving dependencies....... Using rake 13.0.6 Using concurrent-ruby 1.1.9 Using minitest 5.15.0 Using builder 3.2.4 Using erubi 1.10.0 Using racc 1.6.0 Using crass 1.0.6 Using rack 2.2.3 Using nio4r 2.5.8 Usi..
[오류 해결::Ruby] error: use of undeclared identifier 'RUBY_FUNCTION_NAME_STRING' - Ruby 3.0.x 설치 오류
[오류 해결::Ruby] error: use of undeclared identifier 'RUBY_FUNCTION_NAME_STRING' - Ruby 3.0.x 설치 오류
2022.01.05Ruby 3.0.x 설치 오류 해결하기 기쁜맘으로 Ruby 3버전을 영접하려다 오류로 골머리좀 앓았습니다... RUBY_FUNCTION_NAME_STRING 너는 누구냐...! 환경 MacOS: Bigsur 11.4 XCode: 13.1 오류 발생 배경 asdf-vm 으로 ruby 3.0.x버전을 install 하려는데 문제가 발생했습니다. install을 실행하면 아래처럼 오류가 발생합니다. $ asdf install ruby 3.0.0 Downloading ruby-3.0.0.tar.gz... -> https://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.0.tar.gz Installing ruby-3.0.0... ruby-build: using readline fro..