BAEL-3014: Added sample code for lists

This commit is contained in:
isaolmez
2019-07-15 12:44:59 +03:00
parent ca53b93176
commit 306c37cfc4
8 changed files with 204 additions and 4 deletions
+16 -4
View File
@@ -5,11 +5,17 @@
<name>spring-thymeleaf-2</name>
<packaging>war</packaging>
<!-- <parent>-->
<!-- <groupId>com.baeldung</groupId>-->
<!-- <artifactId>parent-boot-2</artifactId>-->
<!-- <version>0.0.1-SNAPSHOT</version>-->
<!-- <relativePath>../parent-boot-2</relativePath>-->
<!-- </parent>-->
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2</relativePath>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
@@ -21,6 +27,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>