Eclipse2019-12にbuild.gradleでSpring MVC用jarを取得する
操作方法
1.Spring用jar取得のURLにアクセスします。
URL:
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
https://mvnrepository.com/artifact/org.springframework/spring-core
以下の文字列をbuild.gradleに貼り付ける
build.gradle
// https://mvnrepository.com/artifact/org.springframework/spring-core compile group: 'org.springframework', name: 'spring-core', version: '5.2.6.RELEASE' // https://mvnrepository.com/artifact/org.springframework/spring-webmvc compile group: 'org.springframework', name: 'spring-webmvc', version: '5.2.6.RELEASE'
2.プロジェットを右クリックします。
3.「Gradle」–>「Gradleプロジェクトのリフレッシュ」をクリックします。jarファイルがダウンロードされます。
4.追加jarの確認
「プロジェットと外部の依存関係」に「Spring-webmvc-5.2.6.RELEASE.jar」、「Spring-web-5.2.6.RELEASE.jar」など追加されます。