91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring中如何自定義登陸頁面和主頁

發布時間:2021-11-17 10:43:21 來源:億速云 閱讀:193 作者:小新 欄目:大數據

小編給大家分享一下spring中如何自定義登陸頁面和主頁,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

spring中如何自定義登陸頁面和主頁

1、添加模版引擎

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

2、配置登陸頁面路徑

在WebSecurityConfig復寫configure(HttpSecurity http),復寫登陸頁面的路徑。
@Override
protected void configure (HttpSecurity http) throws Exception{
   http.formLogin()
           .loginPage("/login");
}

3、新建登陸頁面,并跳轉到登陸頁

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>login333</title>
</head>
<body>
  <div th:if="${param.error}">
      用戶名密碼錯誤,要不去<a th:href="@{/}">首頁</a>看看?
  </div>
  <div th:if="${param.logout}">
      您已經登陸
  </div>
  <form th:action="@{/login}" method="post">
      <div><label>用戶名:<input type="text" name="username"></label></div>
      <div><label>密碼: <input type="password" name="password"></label></div>
      <div><input type="submit" value="登陸"></div>
  </form>
</body>
</html>

@GetMapping("/login")
public String login() {
    return "/login";
}

This application has no explicit mapping for /error, so you are seeing this as a fallback.

spring中如何自定義登陸頁面和主頁

語法錯誤

spring中如何自定義登陸頁面和主頁

高亮語法

<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">

4、新建主頁,并跳轉到主頁

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首頁</title>
</head>
<body>
<h2>歡迎光臨</h2>
<p>點擊<a th:href="@{/hello}">這里</a>打個招呼吧</p>
<form th:action="@{/logout}" method="post">
    <input type="submit" value="退出登陸">
</form>
<p><a th:href="@{/hello/helloAdmin}">管理員</a></p>
<p><a th:href="@{/hello/helloUser}">普通用戶</a></p>
</body>
</html>

@GetMapping({"","/","/index"})
public String index() {
    return "/index";
}

5、沒有權限頁面顯示,及所有人可以訪問登陸頁,所有請求都要登陸后才能訪問

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>沒有權限</title>
</head>
<body>
<h2 th:inline="text">不好意思,您沒有訪問權限</h2>
<p><a th:href="@{/hello/helloUser}">前往普通用戶界面</a></p>
<form th:if="${param.logout}}" method="退出登陸">
    <input type="submit" value="退出登陸">
</form>
</body>
</html>

@Override
protected void configure (HttpSecurity http) throws Exception{
   http.formLogin()
           .loginPage("/login")
   .and()
   .authorizeRequests()
           .antMatchers("/login").permitAll() //允許所有人可以訪問登陸頁面
   .anyRequest().authenticated();//所有的請求需要在登陸之后才能訪問
}

看完了這篇文章,相信你對“spring中如何自定義登陸頁面和主頁”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

秭归县| 关岭| 砚山县| 田阳县| 海安县| 临邑县| 色达县| 清流县| 林口县| 秦皇岛市| SHOW| 婺源县| 呈贡县| 隆化县| 江永县| 南丰县| 中宁县| 霍山县| 宁化县| 和顺县| 库伦旗| 日照市| 陆河县| 营山县| 乳源| 涿鹿县| 曲阜市| 佛坪县| 中超| 保山市| 安福县| 乐平市| 唐山市| 乐都县| 渝中区| 炎陵县| 靖边县| 克东县| 信阳市| 澄城县| 蓝田县|