スプリング入門(2.ライブラリ)

570 ワード

1.ライブラリ!

  • 依存関係のあるライブラリは一緒に
  • に引き寄せられた.

    01. build.gradle

    dependencies {
    	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
    	implementation 'org.springframework.boot:spring-boot-starter-web'
    	testImplementation 'org.springframework.boot:spring-boot-starter-test'
    }

    02. External Library