250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- EC2
- TypeScript
- 코테
- vscode
- Git
- programmers
- 자바
- AWS
- 코딩
- 알고리즘
- 리눅스
- error
- 개발공부
- Java
- 둔산동맛집
- Tistory
- SpringBoot
- 코딩테스트
- CodingTest
- 티스토리챌린지
- Linux
- 우분투
- React
- 프로그래머스
- 티스토리
- 개발
- 오블완
- 개발자
- 스프링부트
- ubuntu
Archives
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- EC2
- TypeScript
- 코테
- vscode
- Git
- programmers
- 자바
- AWS
- 코딩
- 알고리즘
- 리눅스
- error
- 개발공부
- Java
- 둔산동맛집
- Tistory
- SpringBoot
- 코딩테스트
- CodingTest
- 티스토리챌린지
- Linux
- 우분투
- React
- 프로그래머스
- 티스토리
- 개발
- 오블완
- 개발자
- 스프링부트
- ubuntu
Archives
- Today
- Total
개발자가 된 감자
Invalid value type for attribute 'factoryBeanObjectType': java.lang.String 본문
Error 해결
Invalid value type for attribute 'factoryBeanObjectType': java.lang.String
감자씨 2025. 1. 15. 14:37728x90
mybatis를 이용한 백엔드 작업 중 해당 오류가 발생했다.
Invalid value type for attribute 'factoryBeanObjectType': java.lang.String
참조 document
https://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/
Introduction – mybatis-spring-boot-autoconfigure
Using the SpringBootVFS The MyBatis-Spring-Boot-Starter provides the SpringBootVFS as an implementation class of VFS. The VFS is used for searching classes (e.g. target class of type alias, type handler class) from an application (or application server). I
mybatis.org
build.gradle 내에서 mybatis 버전을 3.0.1 -> 3.0.3 으로 변경해주니 정상적으로 작동한다.
build.gradle
// 기존 버전 3.0.1
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.1'
// 변경 후 3.0.3
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
728x90
'Error 해결' 카테고리의 다른 글
Comments