我有此错误java.lang.NoSuchMethodError

dly7yett  于 2024-01-05  发布在  Java
关注(0)|答案(3)|浏览(216)
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.gestion</groupId>
  6. <artifactId>bp</artifactId>
  7. <name>banque</name>
  8. <packaging>war</packaging>
  9. <version>1.0.0-BUILD-SNAPSHOT</version>
  10. <properties>
  11. <java-version>1.6</java-version>
  12. <org.springframework-version>4.1.1.RELEASE</org.springframework-version>
  13. <org.aspectj-version>1.6.10</org.aspectj-version>
  14. <org.slf4j-version>1.6.6</org.slf4j-version>
  15. </properties>
  16. <dependencies>
  17. <!-- Spring -->
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-context</artifactId>
  21. <version>${org.springframework-version}</version>
  22. <exclusions>
  23. <!-- Exclude Commons Logging in favor of SLF4j -->
  24. <exclusion>
  25. <groupId>commons-logging</groupId>
  26. <artifactId>commons-logging</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-webmvc</artifactId>
  33. <version>${org.springframework-version}</version>
  34. </dependency>
  35. <!-- AspectJ -->
  36. <dependency>
  37. <groupId>org.aspectj</groupId>
  38. <artifactId>aspectjrt</artifactId>
  39. <version>${org.aspectj-version}</version>
  40. </dependency>
  41. <!-- Logging -->
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-api</artifactId>
  45. <version>${org.slf4j-version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>jcl-over-slf4j</artifactId>
  50. <version>${org.slf4j-version}</version>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.slf4j</groupId>
  55. <artifactId>slf4j-log4j12</artifactId>
  56. <version>${org.slf4j-version}</version>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>log4j</groupId>
  61. <artifactId>log4j</artifactId>
  62. <version>1.2.15</version>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>javax.mail</groupId>
  66. <artifactId>mail</artifactId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>javax.jms</groupId>
  70. <artifactId>jms</artifactId>
  71. </exclusion>
  72. <exclusion>
  73. <groupId>com.sun.jdmk</groupId>
  74. <artifactId>jmxtools</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>com.sun.jmx</groupId>
  78. <artifactId>jmxri</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. <scope>runtime</scope>
  82. </dependency>
  83. <!-- @Inject -->
  84. <dependency>
  85. <groupId>javax.inject</groupId>
  86. <artifactId>javax.inject</artifactId>
  87. <version>1</version>
  88. </dependency>
  89. <!-- Servlet -->
  90. <dependency>
  91. <groupId>javax.servlet</groupId>
  92. <artifactId>servlet-api</artifactId>
  93. <version>2.5</version>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>javax.servlet.jsp</groupId>
  98. <artifactId>jsp-api</artifactId>
  99. <version>2.1</version>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>javax.servlet</groupId>
  104. <artifactId>jstl</artifactId>
  105. <version>1.2</version>
  106. </dependency>
  107. <!-- Test -->
  108. <dependency>
  109. <groupId>junit</groupId>
  110. <artifactId>junit</artifactId>
  111. <version>4.7</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework</groupId>
  116. <artifactId>spring-orm</artifactId>
  117. <!-- <version>3.1.1.RELEASE</version> -->
  118. <version>${org.springframework-version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>spring-tx</artifactId>
  123. <version>3.1.1.RELEASE</version>
  124. </dependency>
  125. <!-- Hibernate jpa -->
  126. <dependency>
  127. <groupId>org.hibernate</groupId>
  128. <artifactId>hibernate-commons-annotations</artifactId>
  129. <version>3.2.0.Final</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.hibernate</groupId>
  133. <artifactId>hibernate-entitymanager</artifactId>
  134. <version>3.6.0.Final</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.hibernate</groupId>
  138. <artifactId>hibernate-validator</artifactId>
  139. <version>4.1.0.Final</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.hibernate.javax.persistence</groupId>
  143. <artifactId>hibernate-jpa-2.0-api</artifactId>
  144. <version>1.0.0.Final</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>mysql</groupId>
  148. <artifactId>mysql-connector-java</artifactId>
  149. <version>5.1.6</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework</groupId>
  153. <artifactId>spring-beans</artifactId>
  154. <version>4.3.2.RELEASE</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.springframework</groupId>
  158. <artifactId>spring-core</artifactId>
  159. <version>4.1.1.RELEASE</version>
  160. </dependency>
  161. </dependencies>
  162. <build>
  163. <plugins>
  164. <plugin>
  165. <artifactId>maven-eclipse-plugin</artifactId>
  166. <version>2.9</version>
  167. <configuration>
  168. <additionalProjectnatures>
  169. <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
  170. </additionalProjectnatures>
  171. <additionalBuildcommands>
  172. <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
  173. </additionalBuildcommands>
  174. <downloadSources>true</downloadSources>
  175. <downloadJavadocs>true</downloadJavadocs>
  176. </configuration>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-compiler-plugin</artifactId>
  181. <version>2.5.1</version>
  182. <configuration>
  183. <source>1.6</source>
  184. <target>1.6</target>
  185. <compilerArgument>-Xlint:all</compilerArgument>
  186. <showWarnings>true</showWarnings>
  187. <showDeprecation>true</showDeprecation>
  188. </configuration>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.codehaus.mojo</groupId>
  192. <artifactId>exec-maven-plugin</artifactId>
  193. <version>1.2.1</version>
  194. <configuration>
  195. <mainClass>org.test.int1.Main</mainClass>
  196. </configuration>
  197. </plugin>
  198. </plugins>
  199. </build>

字符串
Whene I试验
信息:org.springframework.context.support.ClassPathXmlApplicationContext -刷新org.springframework.context.support.ClassPathXmlApplicationContext@996db8:startup date [Mon Aug 29 16:50:37 CEST 2016]; root of context hierarchy INFO:org.springframework.beans.factory.xml. XmlBeanApplicationReader- Loading XML bean definitions from class path resource [applicationContext.xml] Exception in thread“main”java.lang.NoSuchMethodError:org.springframework.core.ResolvableType.forRawClass(Ljava/lang/Class;)ext.(ClassPathXmlApplicationContext.java:93)at test.TestMain.main(TestMain.java:11)

yc0p9oo0

yc0p9oo01#

你的pom依赖于spring-core 4.1.1,这个方法是从4.2版本引入的,你的spring-context版本和spring-core版本不兼容。

0g0grzrc

0g0grzrc2#

你很可能有一个旧版本的Spring作为另一个库的transitive dependency被拉进来。Spring 4引入了一个Bill of Materials特性来解决这类问题。你可以使用这个:

  • 从POM中声明的所有Spring库中删除<version/>元素。
  • 将以下部分添加到您的POM(根据需要设置版本)。

POM:

  1. <dependencyManagement>
  2. <dependencies>
  3. <dependency>
  4. <groupId>org.springframework</groupId>
  5. <artifactId>spring-framework-bom</artifactId>
  6. <type>pom</type>
  7. <version>4.2.4.RELEASE</version>
  8. <scope>import</scope>
  9. </dependency>
  10. </dependencies>
  11. <dependencyManagement>

字符串
进一步参见:
https://spring.io/blog/2013/12/03/spring-framework-4-0-rc2-available
您可以在dependency management部分导入spring-framework-bom项目,以确保您获得一致的Spring Framework依赖项。当您使用其他可能与早期版本的Spring具有可传递依赖项的项目时,这特别有用。

展开查看全部
57hvy0tb

57hvy0tb3#

您遇到的java.lang.NoSuchMethodError表明Java运行时正在尝试访问正在使用的Spring Framework版本中不存在的方法。在这种情况下,有问题的方法是org.springframework.core.NamedThreadLocal.withInitial(java.lang.String,java.util.function.Supplier)。
当项目中的Spring模块之间存在版本不匹配时,通常会发生此错误。
如果您使用的是Maven或Gradle等依赖项管理工具,请将Spring依赖项更新为与项目兼容的最新版本。请确保更新所有相关的Spring模块以避免版本冲突。
将所有依赖项(spring-context,spring-core,spring-framework,spring-web,spring-web-mvc)保持在同一版本.不允许不同的版本,这可能会导致此类异常。
从2023年12月起,所有这些依赖项的版本6.1.0都可以正常工作

相关问题