直播平臺搭建,實現自定義設定登入頁面

zhibo系統開發發表於2023-11-17

直播平臺搭建,實現自定義設定登入頁面

1.在resources中建立static資料夾(預設找這裡面的頁面)

建立login.html

<!DOCTYPE html>
<html xmlns:th="
<head>
    <meta charset="UTF-8">
    <title>static中的login</title>
</head>
<body>
    <form action="/user/login" method="post">
        使用者名稱:<input type="text" name="username"/>
        <br/>
        密碼:<input type="text" name="password"/>
        <br/>
        <input type="submit" value="login"/>
    </form>
</body>
</html>


注意:其中username和password是固定的

但是是可以自定義的,但是在這裡使用預設的


2.controller檔案:

@RestController
@RequestMapping("/test")
public class TestController {
    @GetMapping("hello")
    public String add(){
        return "hello security";
    }
    @GetMapping("index")
    public String add2(){
        return "hello index";
    }
}


 以上就是直播平臺搭建,實現自定義設定登入頁面, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2995925/,如需轉載,請註明出處,否則將追究法律責任。

相關文章