springboot(9)-従業員管理システムのログイン機能の実現

1ログイン機能の実現

ここに画像の説明を挿入
上記のインターフェースは次のコードから派生しており、
ここに画像の説明を挿入
index.htmlファイルは次のとおりです。

<!DOCTYPE html>
<!--thymeleaf 添加命名空间  xmlns:th="http://www.thymeleaf.org"-->
<html lang="en-US" xmlns:th="http://www.thymeleaf.org">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
		<meta name="description" content="">
		<meta name="author" content="">
		<title>Signin Template for Bootstrap</title>
		<!-- Bootstrap core CSS -->
<!--		修改 超链接  Link URL Expressions: @{
    
    ...}-->
		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
		<!-- Custom styles for this template -->
		<link th:href="@{/css/signin.css}" rel="stylesheet">
	</head>

	<body class="text-center">
		<form class="form-sign" th:action="@{/user/login}">
<!--			修改 图片-->
			<img class="mb-4" th:src="@{/img/bootstrap-solid.svg}" alt="" width="72" height="72">
			<h1 class="h3 mb-3 font-weight-normal" th:text="#{login.tip}">Please sign in</h1>
<!--			如果msg为空 则不显示-->
			<p style="color: #ff0000" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></p>
			<input  type="text" name="username" class="form-control" th:placeholder="#{login.username}" required="" autofocus="">
			<input type="password" name="password" class="form-control" th:placeholder="#{login.password}" required="">
			<div class="checkbox mb-3">
				<label>
          <input type="checkbox" value="remember-me">[[#{
    
    login.remember}]]
        </label>
			</div>
			<button class="btn btn-lg btn-primary btn-block" type="submit">[[#{
    
    login.btn}]]</button>
			<p class="mt-5 mb-3 text-muted">© 2017-2018</p>
			<a class="btn btn-sm" th:href="@{/index.html(l='zh_CN')}">中文</a>
			<a class="btn btn-sm" th:href="@{/index.html(l='en_US')}">English</a>
		</form>
	</body>
</html>

ここに画像の説明を挿入
ここに画像の説明を挿入
したがって、インターフェース
ここに画像の説明を挿入
があります:しかし問題があります:アドレスを直接入力してください:http:// localhost:8080 / zs / main.htmlもこのインターフェースにログインするので、追加するインターセプターを構成する必要があります
ここに画像の説明を挿入
@Bean
ここに画像の説明を挿入

おすすめ

転載: blog.csdn.net/zs18753479279/article/details/112665918