Add thymleaf view and testing it
This commit is contained in:
parent
d79ad3eab8
commit
7e29dca769
@ -13,6 +13,8 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
||||
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
implementation 'io.springfox:springfox-swagger2:2.9.2'
|
||||
|
@ -8,7 +8,6 @@ import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.Optional;
|
||||
|
||||
@SuppressWarnings("ALL")
|
||||
@Repository
|
||||
public interface UserRepository extends BaseRepository<UserEntity, Long> {
|
||||
Optional<UserEntity> findFirstByEmail(String email);
|
||||
|
20
src/main/java/com/cubetiqs/demo/ui/HomeController.java
Normal file
20
src/main/java/com/cubetiqs/demo/ui/HomeController.java
Normal file
@ -0,0 +1,20 @@
|
||||
package com.cubetiqs.demo.ui;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
|
||||
@Controller
|
||||
public class HomeController {
|
||||
@GetMapping(value = {"/index", "", "/", "/index.php"})
|
||||
public String index(Model model) {
|
||||
model.addAttribute("myname", "Sambo");
|
||||
return "index";
|
||||
}
|
||||
|
||||
@GetMapping(value = {"/admin/users"})
|
||||
public String user(Model model) {
|
||||
model.addAttribute("myname", "Sambo");
|
||||
return "admin/users/index";
|
||||
}
|
||||
}
|
1
src/main/resources/static/js/main.js
Normal file
1
src/main/resources/static/js/main.js
Normal file
@ -0,0 +1 @@
|
||||
console.log("hello")
|
13
src/main/resources/templates/admin/users/index.html
Normal file
13
src/main/resources/templates/admin/users/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Users</h1>
|
||||
</body>
|
||||
</html>
|
13
src/main/resources/templates/index.html
Normal file
13
src/main/resources/templates/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1 th:text="${myname}"></h1>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user