Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有与另一个表连接的实体
@桌子
每次我对实体执行选择语句时,那些没有映射的将不会出现。
我想是在做一个左连接,我可以知道是否可以做一个完整的外连接?
我使用标准检索数据。
如果您在 Hibernate 中使用注解,则使用 @OneToOne 关系更有意义。这使用对象关系映射抽象了 LEFT JOIN。
我认为这个join annotation 和 Hibernate join也可能对你有所帮助。