使用spring social获得本网站的链接/connet时候报如下问题?
java.lang.IllegalAccessError: class org.springframework.social.connect.jdbc.JdbcConnectionRepository$$EnhancerBySpringCGLIB$$1196d00b cannot access its superclass org.springframework.social.connect.jdbc.JdbcConnectionRepository
断点信息
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在github上找到的答案:
https://github.com/spring-pro...
因为JdbcConnectionRepository 不是public,无法使用代理类产生,如果使用spring boot的话可以设置spring.aop.proxy-target-class=false
或者在config里
@Bean
不适用CGLIB而使用JDK的代理
实在不行那应该就是你的spring-boot-devtools的问题,删除依赖即可