如何在Spring社交中通过Hibernate持久查询userconnection
?
情况:
我们必须在遗留的Web应用程序中引入Spring Social。这个遗留系统使用Hibernate。问题是,在Spring Social中,userconnection
通过SpringTemplate
(类JdbcUsersConnectionRepository
和JdbcConnectionRepository
)保留。
根据我的有限理解,我有两个选择:
ConnectionRepository
和UsersConnectionRepository
选项1不是我想要的,因为我必须投入大量精力来正确配置第二个持久性框架(多线程,连接池等)。
选项2可以快速解决我的问题,但从长远来看,升级到新的Spring Social版本时可能会导致隐藏或隐藏的问题。
因为这两个选项都不能满足我的问题:
你会建议什么?你知道更好的选择吗?