JPA, MySQL and UUIDs are not friends, apparently…

Today I was being myself as usual, creating an API with a UUID as a primary key. All was well, until JPA decided it wasn’t.

I had created a OneToOne relationship between one entity, and my User entity ( which had a UUID as Id ). In my defense ( before you start judging ) everything was working well. However, I started getting inconsistencies.

I had a method for retrieving paginated entities, and this method started throwing some EntityNotFound exception! After some hours of googling what was the problem, I found a work around, which was putting a @NotFound on the relationship. This is … eh … not quite a good idea, so I decided to screw it.

That’s when I discovered the problem was that JPA could handle UUIDs, but MySQL had issues. Apparently, mysql stored UUIDs as binary, and JPA was trying to search using the UUID as a string, and that wasn’t working.

What I didn’t get though, was why on one method it was working perfectly, but on another, being inconsistent. If there’s anyone who can explain to me WTF caused this issue, please feel free to say something.

原文链接:JPA, MySQL and UUIDs are not friends, apparently…

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容