dependenciesの追加

Gradleで依存関係を設定します。

build.gradleを開き、dependenciesに以下の3行を追加します。

  • compile ‘org.springframework:spring-context:4.0.5.RELEASE’
  • compile ‘org.springframework:spring-webmvc:4.0.5.RELEASE’
  • compile ‘org.thymeleaf:thymeleaf-spring4:2.1.3.RELEASE’

1つ目と2つ目はSpringのライブラリ、3つ目はThymeleafのライブラリです。ThymeleafはHTMLテンプレートエンジンです。ThymeleafのテンプレートはHTMLファイルそのもの、というところが利点です。

Dependencies

GradleのTool Windowを開いて、更新ボタンを押します。

Gradle tool window

ライブラリがダウンロードされます。

External libraries