When i try to navigat to an endpoint i get tho following error
Type definition error: [simple type, class org.hibernate.proxy.pojo.bytebuddy.ByteBuddy
I also faced with this problem. @Szelek's answer helped me. But I did it with another way. Changed getOne() method to:
repository.findById(id).orElse(null)