Error 1 java.net.SocketException: socket failed: EPERM (Operation not permitted) cs 에러 발생 상황 manifest에서 아래와 같이 INTERNET permission을 주었음에도 앱에서 인터넷상 사진을 불러오지 못하는 상황 1 cs 해결 방법 간단하게 애뮬에서 앱을 지웠다가 다시 깔고 실행하면 해결된다.
Error W/Glide: Load failed for https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&fname=https%3A%2F%2Fk.kakaocdn.net%2Fdn%2Fd44x6A%2Fbtqzu7dKbZ6%2FlOoGM6j0rjWD3p8kKfB8ck%2Fimg.jpg with size [150x150] class com.bumptech.glide.load.engine.GlideException: Failed to load resource There was 1 cause: java.net.UnknownHostException(Unable to resolve host "img1.daumcdn.net": No address associated wi..
Error org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'API2Controller': Unsatisfied dependency expressed through field 'studentRepository'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'studentRepository': Invocation of init method failed; nested exception is java.lang.IllegalArgumentExc..
Error Failed to create query for method public abstract java.util.List com.wordata.test.repository.StudentRepository.findAllByOrderByNameDesc()! No property name found for type Student! Did you mean 'namme'? 에러 발생 상황 JPA Entity를 구현할때 멤버 변수 이름과 테이블 필드의 이름이 다르게 구현 (해당 상황에서는 오타로 name을 namme로 적어둠) 에러 발생 이유 JPA Entity를 구현할때 멤버 변수 이름과 테이블 필드 이름이 일치하지 않을 경우 발생 해결 방법 멤버 변수 이름과 테이블 필드 이름을 일치시켜주거나 @Column..
Error s.e.ErrorMvcAutoConfiguration$StaticView : Cannot render error page for request [/api/departments] and exception [Could not write JSON: Infinite recursion (StackOverflowError); nested exception is com.fasterxml.jackson.databind.JsonMappingException: Infinite recursion 에러 발생 상황 Spring JPA구현중 A class에서 @ManyToOne으로 B 맴버 변수 b를 구현 후 B class에서 @OneToMany로 List 맴버 변수 a를 구현했을 때 A나 B 객체를 JSON 포멧으로..