【发布时间】:2021-10-26 07:43:03
【问题描述】:
当 arangtoDB 边缘集合链接到不同的对象时,是否有人已经遇到过同样的问题?并且能够使用 ArangoSpring 驱动程序对此进行操作而没有任何问题?
我有这个优势
@Data
@Edge("link2User")
public class Link2User<T> {
@Id
private String key;
@From
private User user;
@To
private T to;
@Getter @Setter private String data;
...
public Link2User(final User user, final T to) {
super();
this.user = user;
this.to = to;
...
}
比存储库
@Component
public interface Link2UserRepository<T> extends ArangoRepository<Link2User<T>, String> {
}
当我尝试打电话时:
@Autowired
Link2UserRepository<Item> l2uRepository;
...
Link2User<Item> link1 = new Link2User<Item>( user, Item);
v2uRepository.save(link1 );
我的链接存储在 ArangoDB 中,但出现错误:
DOP. org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.data.mapping.MappingException: Couldn't find PersistentEntity for type class java.lang.Object!] with root cause
org.springframework.data.mapping.MappingException: Couldn't find PersistentEntity for type class java.lang.Object!
【问题讨论】: