亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

阿巴嘎旗| 鹿邑县| 青冈县| 礼泉县| 房产| 西畴县| 仪陇县| 禹州市| 邛崃市| 临安市| 伊宁市| 祁阳县| 赤峰市| 商丘市| 嘉义市| 天津市| 浮梁县| 大理市| 阿巴嘎旗| 永修县| 社旗县| 会同县| 玛沁县| 张掖市| 景宁| 保定市| 宕昌县| 南华县| 麻城市| 大悟县| 海城市| 博乐市| 都江堰市| 广丰县| 马鞍山市| 雷州市| 寻甸| 南阳市| 海原县| 八宿县| 汕头市|