우당탕탕

[MyBatis] Cause: java.sql.SQLDataException: Cannot determine value type from string 본문

오류해결

[MyBatis] Cause: java.sql.SQLDataException: Cannot determine value type from string

모찌모찝 2024. 1. 22. 19:00
Cause: java.sql.SQLDataException: Cannot determine value type from string

DTO 내부에 생성자 미존재로 나오는 에러

해결법

@NoArgsConstructor
@AllArgsConstructor
public class sampleDto {
	private String something;
}

@NoArgsConstructor / @AllArgsConstructor 어노테이션을 상황에 따라 사용해서 해결

Comments