Spring/Spring Boot
JSP Login view
hoonssss
2023. 9. 20. 23:18
반응형
SMALL
package com.in28minutes.springboot.myfirstwebapp.login;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class LoginController {
@RequestMapping("login")
public String gotoLoginPage() {
return "login";
}
}
<html>
<head>
<title> Login Page - JSP</title>
</head>
<body>
welcome to the Login Page!
</body>
</html>
반응형
LIST