├── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── java │ └── hello │ │ └── itemservice │ │ ├── ItemServiceApplication.java │ │ ├── domain │ │ └── item │ │ │ ├── Item.java │ │ │ └── ItemRepository.java │ │ └── web │ │ └── basic │ │ └── BasicItemController.java └── resources │ ├── application.properties │ ├── static │ ├── css │ │ └── bootstrap.min.css │ ├── html │ │ ├── addForm.html │ │ ├── editForm.html │ │ ├── item.html │ │ └── items.html │ └── index.html │ └── templates │ ├── basic │ ├── addForm.html │ ├── editForm.html │ ├── item.html │ └── items.html │ └── css │ └── bootstrap.min.css └── test └── java └── hello └── itemservice ├── ItemServiceApplicationTests.java └── domain └── item └── ItemRepositoryTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'item-service' 2 | -------------------------------------------------------------------------------- /src/main/java/hello/itemservice/ItemServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/java/hello/itemservice/ItemServiceApplication.java -------------------------------------------------------------------------------- /src/main/java/hello/itemservice/domain/item/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/java/hello/itemservice/domain/item/Item.java -------------------------------------------------------------------------------- /src/main/java/hello/itemservice/domain/item/ItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/java/hello/itemservice/domain/item/ItemRepository.java -------------------------------------------------------------------------------- /src/main/java/hello/itemservice/web/basic/BasicItemController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/java/hello/itemservice/web/basic/BasicItemController.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/html/addForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/static/html/addForm.html -------------------------------------------------------------------------------- /src/main/resources/static/html/editForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/static/html/editForm.html -------------------------------------------------------------------------------- /src/main/resources/static/html/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/static/html/item.html -------------------------------------------------------------------------------- /src/main/resources/static/html/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/static/html/items.html -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/basic/addForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/templates/basic/addForm.html -------------------------------------------------------------------------------- /src/main/resources/templates/basic/editForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/templates/basic/editForm.html -------------------------------------------------------------------------------- /src/main/resources/templates/basic/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/templates/basic/item.html -------------------------------------------------------------------------------- /src/main/resources/templates/basic/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/templates/basic/items.html -------------------------------------------------------------------------------- /src/main/resources/templates/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/main/resources/templates/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/test/java/hello/itemservice/ItemServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/test/java/hello/itemservice/ItemServiceApplicationTests.java -------------------------------------------------------------------------------- /src/test/java/hello/itemservice/domain/item/ItemRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersesTitan/SpringWeb/HEAD/src/test/java/hello/itemservice/domain/item/ItemRepositoryTest.java --------------------------------------------------------------------------------