spring-attic / spring-social

Allows you to connect your applications with SaaS providers such as Facebook and Twitter.
http://projects.spring.io/spring-social
Apache License 2.0
619 stars 351 forks source link

No Hibernate implementation of ConnectionRepository and UsersConnectionRepository #227

Open mirkoliver opened 7 years ago

mirkoliver commented 7 years ago

Summary

No Hibernate implementation of ConnectionRepository and UsersConnectionRepository

Actual Behavior

The only persisting implementations of ConnectionRepository and UsersConnectionRepository are JdbcConnectionRepository and JdbcUsersConnectionRepository. These use Spring's JDBCTemplate. Hibernate is not supported. Developers, who need a Hibernate implementation have to implement a custom one. This can lead to incompatibilities when upgrading to new Spring Social versions.

Expected Behavior

An implementation of these interfaces for Hibernate.

Version

Spring Social 2.0.0.M2

Bessonov commented 7 years ago

Related https://github.com/michaellavelle/spring-social-spring-data-jpa

jyothri commented 7 years ago

I wanted to take a shot at this one. Is it okay to add spring-data-commons and hibernate-jpa as dependencies?