我缺少什麼依賴性?我目前正在使用:org.springframework.web.bind.annotation.RequestMapping缺少什麼依賴關係?
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>
錯誤即時得到的是: 進口org.springframework.web.bind不能得到解決
感謝隊友,也爲我工作。你有沒有任何想法,如果我們沒有指定哪一個版本做春季下載?不是默認下載最新版本! – varunkr
當我們沒有指定「」標籤時,它會拋出錯誤/異常。因此標籤「」是強制性的。其次,如果您沒有在此標記中指定版本,則需要指定版本標記「LATEST」/「RELEASE」(僅當您使用Maven 2.x時)。對於Maven 3.x,meta版本標記不再受支持。始終指向最新版本的依賴關係可能會在構建應用程序時產生問題。因此強烈建議使用版本的具體值。 –
MAC
欲瞭解更多詳細信息,請查看[Stackoverflow](https://stackoverflow.com/questions/30571/how-do-i-tell-maven-to-use-the-latest-version-of-a-dependency)和[Apache Maven](https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+Compatibility+Notes#Maven3.xCompatibilityNotes-PluginMetaversionResolution) – MAC