Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
shinheekim committed Jul 31, 2024
1 parent 85c595e commit 29a75c2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package net.skhu.likelion12thteam03be;

import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/users")
public class UserCheckController {
@GetMapping
public String userHi (Model model) {
return "user.html";
}
}
10 changes: 10 additions & 0 deletions src/main/resources/templates/user.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>userHello</title>
</head>
<body>
/users ν–ˆμ„ λ•Œ λ“€μ–΄μ˜€κ²Œ λ˜λŠ” νŽ˜μ΄μ§€
</body>
</html>

0 comments on commit 29a75c2

Please sign in to comment.