반응형
SMALL

MSA (Boot) 11

[MyBatis] InternalAuthenticationServiceException: Cannot pass null or empty values to constructor

문제 로그인 url 요청시 나는 에러 문제 원인 로그인 정보가 제대로 들어가지만 쿼리문 타고 결과를 가져올 때 제대로 못가져오고 null이 뜸 이는 entity 클래스의 필드 명과 DB 컬럼 명이 달랐기 때문 entity 클래스의 필드 명은 userId DB 컬럼 명은 user_id 문제 해결 entity나 DB에서 이름을 통일 시키기 근데 이렇게는 안할거야 mapper.xml 쿼리에서 select 할 때 as 키워드로 매핑시키기 select user_id as userId ...

MSA (Boot)/error 2020.05.28

[MyBatis] InternalAuthenticationServiceException: Invalid bound statement .. IUserMapper

문제 RuntimeException 해결 후 토큰 발급 위해 로그인 url 요청 시 나는 에러 문제 원인 여러가지 원인이 있지만 내 경우에는 로그인 정보가 안맞기 때문이라는 구글링 결과를 찾음 로그인 정보를 다르게 요청한 것도 맞지만 이게 원인은 아니었음 같은 에러 여전함 나는 JPA를 쓰고 있는게 아니라 MyBatis를 쓰고 있는거라 로그인 정보 찾을 때 userMapper.xml에 쿼리가 따로 필요한데 쿼리를 설정해주지 않아서 IUserMapper.java에서 쿼리를 못찾고 있음 문제 해결 userMapper.xml에 쿼리 설정해줌 select * from user_tb where email=#{email}

MSA (Boot)/error 2020.05.28

[MyBatis] org.apache.ibatis.binding.BindingException: Mapper method has an unsupported return type: class .. UsersDto

문제 MySQL & MyBatis 연동 후 ModelMapper 사용하여 DB insert 시 데이터는 DB에 제대로 들어가지만 UserDto가 return type에 맞지 않는다는 에러 발생 문제 원인 insert는 반환 값이 숫자! 현재 mapper.xml과 매핑되어있는 인터페이스에서는 반환 값을 UserDto로 받고 있었기 때문에 반환 값이 맞지 않아 생기는 오류 문제 해결 IUserMapper.java 메소드 반환 타입 수정 int signUpUser(Users user);

MSA (Boot)/error 2020.05.27

[Config] ACCESS_REFUSED - Login was refused using authentication mechanism PLAIN. For details see the broker logfile. amqp

문제 RabbitMQ 테스트 시 Config 서버 실행 오류 발생 문제 원인 ... application.yml 설정 파일의 spring depth 다음으로 붙어야 할 코드가 한 depth 더 들어가있었음.. 문제 해결 depth 맞춰주기 spring: application: name: ConfigServer cloud: config: server: git: ... rabbitmq: host: localhost port: 5672 username: admin password: admin

MSA (Boot)/error 2020.05.14

JWT signature does not match locally computed signature. JWT validity cannot be asserted and should not be trusted

문제 허용 안된 url 접속 시 Header에 Authorization 과 토큰 값 같이 넘겨도 접속이 안됨 문제 원인 git에 올려놓은 configuration 파일의 token secret 값과 zuul, ms의 token secret 값이 다름 git configuration은 test_secret project configuration application_yml은 local_secret 문제 해결 git configuration에서 local_secret으로 변경 후 config, eureka, zuul, ms 서버 다 재실행

MSA (Boot)/error 2020.05.14
1 2
반응형
SMALL
반응형
LIST