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 在应用程序的数据库 Ydb 中创建表 Xtbl。
在另一个应用程序中,我想使用相同的数据库和相同的表。如何在不再次创建相同模型且不使用 JDBC 的情况下使用它?
您可以在第二个应用程序中使用以下注释访问另一个数据库表中的数据。
@Table(catalog="app1db") public class EntityFromApp1{ }
您必须确保 app2 的 db 用户具有对 app1db 的读取权限。