Skip to content

Commit 218c1e8

Browse files
committed
Thymeleaf- The best HTML Template Engine for Spring boot Applications
1 parent 99165f8 commit 218c1e8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

springboot2-webapp-thymeleaf/src/main/java/net/alanbinu/springboot2/springboot2webappthymeleaf/Springboot2WebappThymeleafApplication.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.guides.springboot2.springboot2webappthymeleaf;
1+
package net.alanbinu.springboot2.springboot2webappthymeleaf;
22

33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;

springboot2-webapp-thymeleaf/src/main/java/net/alanbinu/springboot2/springboot2webappthymeleaf/controllers/HomeController.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package net.guides.springboot2.springboot2webappthymeleaf.controllers;
1+
package net.alanbinu.springboot2.springboot2webappthymeleaf.controllers;
22

33
import org.springframework.beans.factory.annotation.Autowired;
44
import org.springframework.stereotype.Controller;
55
import org.springframework.ui.Model;
66
import org.springframework.web.bind.annotation.RequestMapping;
77

8-
import net.guides.springboot2.springboot2webappthymeleaf.repositories.UserRepository;
8+
import net.alanbinu.springboot2.springboot2webappthymeleaf.repositories.UserRepository;
99

1010
@Controller
1111
public class HomeController

springboot2-webapp-thymeleaf/src/main/java/net/alanbinu/springboot2/springboot2webappthymeleaf/domain/User.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.guides.springboot2.springboot2webappthymeleaf.domain;
1+
package net.alanbinu.springboot2.springboot2webappthymeleaf.domain;
22

33
import javax.persistence.Entity;
44
import javax.persistence.GeneratedValue;

springboot2-webapp-thymeleaf/src/main/java/net/alanbinu/springboot2/springboot2webappthymeleaf/repositories/UserRepository.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package net.guides.springboot2.springboot2webappthymeleaf.repositories;
1+
package net.alanbinu.springboot2.springboot2webappthymeleaf.repositories;
22

33
import org.springframework.data.jpa.repository.JpaRepository;
44

5-
import net.guides.springboot2.springboot2webappthymeleaf.domain.User;
5+
import net.alanbinu.springboot2.springboot2webappthymeleaf.domain.User;
66

77
public interface UserRepository extends JpaRepository<User, Integer>
88
{

0 commit comments

Comments
 (0)