Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pom.xml中的依赖有什么意义?
我有以下顺序的依赖项:
如果我在 Spring 之上的任何地方插入 Spring Security 依赖项,我会收到错误。例如,如果我在最顶部插入两个依赖项,我会得到这个异常(也是运行前的编译器错误):
java.lang.NoClassDefFoundError: org/springframework/core/env/EnvironmentCapable
依赖顺序在 Maven 中无关紧要。
添加 Spring Security 依赖项后,您需要删除 Spring 依赖项,因为 Spring Security 引用了包含此类的不同版本的 Spring。
所以删除 Spring 依赖项应该可以解决这个问题。