Skip to content

Commit

Permalink
add @controller helloworld ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
loda-kun committed May 19, 2019
1 parent ec49331 commit 2868c33
Show file tree
Hide file tree
Showing 8 changed files with 528 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<module>spring-boot-5-Component-Scan</module>
<module>spring-boot-6-@configuration-@Bean</module>
<module>spring-boot-7-spring-application-properties-@Value</module>
<module>spring-boot-8-@Controller-web-helloworld</module>

</modules>
<parent>
Expand Down
21 changes: 21 additions & 0 deletions spring-boot-8-@Controller-web-helloworld/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-boot-learning</artifactId>
<groupId>me.loda.spring</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-8-@Controller-web-helloworld</artifactId>

<dependencies>
<!-- thymeleaf -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 2868c33

Please sign in to comment.