have problem with IDEA?
I create new Spring Boot project, with dependency Spring Web, Spring Security, Spring JPA and others
Create two simple class
main class
Controller Class
@Controller public class {
@GetMapping("")
public String Home() {
return "homes";
}
}
And simple templates "homes.html"
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Home Code Java</title>
</head>
<body>
<h1> Welcome to home JVM</h1>
</body>
</html>
WHY MY IDEA START THIS??? https://drive.google.com/drive/folders/1dnn-IKkpaBeouyqnGU13YLf1GBPVd_jQ?usp=sharing WHAT IS IT ???? in this link different template, not my! but port is my, localhost 9092/ this port is - localhost 9092/login? where did login come from with this templates ?
my link in @GetMapping (""), not (/login)
PLS HELP !
in properties port=9092