[Spring] Error creating bean with name 'sqlSessionFactory'

0후·2021년 2월 5일
0

에러모음

목록 보기
3/9

ERROR

ERROR: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in ServletContext resource [/WEB-INF/spring/root-context.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse config resource: class path resource [mybatis-config.xml]; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'peachy/md/mapper/PeachyMapper.xml'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'Address'. Cause: java.lang.ClassNotFoundException: Cannot find class: Address

해결 방안

해당 에러는 Mapper가 매핑이 제대로 안돼있어서 발생한 에러로, <mapper namespace="매퍼명">을 잘 연결 시켜주면 에러가 사라진다.

profile
휘발방지

0개의 댓글