-1
如何使用spring-context中使用的versiosn獲取所有依賴項的列表4.3.6 Release?我看到的是在spring.io頁春天開機但不適合春天上下文在spring-context 4.3.6版本中獲取版本的所有依賴關係4.3.6.Release
如何使用spring-context中使用的versiosn獲取所有依賴項的列表4.3.6 Release?我看到的是在spring.io頁春天開機但不適合春天上下文在spring-context 4.3.6版本中獲取版本的所有依賴關係4.3.6.Release
如果您正在使用Maven的增加,這將解決所有的依賴
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.6.RELEASE</version>
</dependency>
它具有以下依存關係:
org.springframework:彈簧上下文:4.3.6.RELEASE
org.springframework:彈簧AOP:4.3.6.RELEASE
org.springframework:彈簧豆:4.3.6.RELEASE
org.springframework:彈簧核心:4.3.6.RELEASE
共享記錄:共享記錄:1.2
org.springframework:彈簧式:4.3.6.RELEASE
需要的是都知道產品中使用的開源代碼。這裏不要求maven依賴。 – user3780647
通過訪問https://mvnrepository.com/artifact/org.springframework/spring-context/4.3.6.RELEASE你會看到一個編譯依賴項部分,那是你在找什麼? – mhshimul
好吧,它幫助! – user3780647