250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 문서
- 오픈소스
- JavaScript
- jpa
- STS
- git
- Docker
- error
- Eclipse
- Source
- Exception
- IntelliJ
- PostgreSQL
- maven
- myBatis
- ubuntu
- spring
- SpringBoot
- 설정
- Python
- Spring Boot
- Core Java
- oracle
- Thymeleaf
- MySQL
- AJAX
- Open Source
- JDBC
- MSSQL
- Tomcat
Archives
- Today
- Total
헤르메스 LIFE
[Error] The return type is incompatible with Persistable<String>.getId() 본문
Exception
[Error] The return type is incompatible with Persistable<String>.getId()
헤르메스의날개 2023. 4. 19. 23:32728x90
아래와 같은 오류가 발생했습니다.
The return type is incompatible with Persistable<String>.getId()
내용은 getId() 의 ID 의 Return Type이 String 이기 때문에 발생하는 오류입니다. ( ID의 Type은 Long 형입니다. )
Persistable 는 Spring Data JPA 구현 시 Merge 가 발생하는 문제를 해결하기 위해 사용하는 방법입니다.
https://hermeslog.tistory.com/693
저의 경우 해결 방법은 아래와 같습니다.
public abstract class BaseEntity implements Serializable, Persistable<String>
아래와 같이 변경합니다.
public abstract class BaseEntity implements Serializable, Persistable<Long>
728x90