spring 3.x 出现 no such method 错误的问题
您好,我正在使用 spring 框架,在执行基于注释的测试用例时,我收到错误,任何人都可以知道我需要在 pom.xml 中添加哪个 jar 依赖项(maven 工件)文件吗?
org.springframework.transaction.interceptor.TransactionAttribute.getQualifier()没有这样的方法错误
Hi i am using spring framework and while executing annotationbased test case i am getting error can any one have idea about which jar dependancy(maven artifact) file do i need to add in my pom.xml ?
org.springframework.transaction.interceptor.TransactionAttribute.getQualifier() no such method error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来你有两个不兼容的罐子。
检查:
spring-tx
和spring-test
版本相同(3.0.x)。如果这没有帮助。在
TransactionalTestExecutionListener
处放置一个断点,并检查实现TransactionAttribute
的 concreate 类是否也是正确的版本。Looks like you have two incompatible jars.
Check that:
spring-tx
andspring-test
is of the same version (3.0.x).If this does not help. Place a break point at
TransactionalTestExecutionListener
and check that the concreate class that implementsTransactionAttribute
is of correct version too.