There are some objects with compound primary keys, and these objects, when opened, have invalid links that have the fully qualified class names in the URL inside _links
Also clicking on the links gives such errors -
org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type java.lang.String to type com.core.connection.domains.UserFriendshipId
I have a customized Spring XML repository with jpa enabled: repositories and repository distributed from JpaRepository
Can I make the repository implement org.springframework.core.convert.converter.converter.Converter to handle this. Currently getting the links below -
_links: { userByFriendshipId: { href: "http://localhost:8080/api/userFriendships/ com.core.connection.domains.UserFriendshipId@5b10 /userByFriendId" }
in xml config, I have jpa: repositories enabled and @RestResource enabled inside repositories
source share