30 lines
1.1 KiB
Markdown
Raw Normal View History

2015-12-09 18:13:30 +05:30
=========
## Spring Thymeleaf Example Project
### Relevant Articles:
2016-10-04 15:26:33 +06:00
- [Introduction to Using Thymeleaf in Spring](http://www.baeldung.com/thymeleaf-in-spring-mvc)
2016-10-04 15:33:02 +06:00
- [CSRF Protection with Spring MVC and Thymeleaf](http://www.baeldung.com/csrf-thymeleaf-with-spring-security)
2016-11-11 16:44:13 +06:00
- [Thymeleaf: Custom Layout Dialect](http://www.baeldung.com/thymeleaf-spring-layouts)
- [Spring and Thymeleaf 3: Expressions](http://www.baeldung.com/spring-thymeleaf-3-expressions)
- [Spring MVC + Thymeleaf 3.0: New Features](http://www.baeldung.com/spring-thymeleaf-3)
2017-01-10 12:34:18 -06:00
- [How to Work with Dates in Thymeleaef](http://www.baeldung.com/dates-in-thymeleaf)
- [How to Create an Executable JAR with Maven](http://www.baeldung.com/executable-jar-with-maven)
2016-11-03 12:47:43 +02:00
2015-12-09 18:13:30 +05:30
### Build the Project
2015-12-20 21:43:31 +05:30
2015-12-09 18:13:30 +05:30
mvn clean install
2016-11-03 12:47:43 +02:00
2015-12-20 21:43:31 +05:30
### Run the Project
mvn cargo:run
- **note**: starts on port '8082'
Access the pages using the URLs:
http://localhost:8082/spring-thymeleaf/
http://localhost:8082/spring-thymeleaf/addStudent/
http://localhost:8082/spring-thymeleaf/listStudents/
The first URL is the home page of the application. The home page has links to the other two pages.