Spring Boot 中集成 Spring Security

2024-09-05 09:58
文章标签 java spring boot 集成 security

本文主要是介绍Spring Boot 中集成 Spring Security,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Spring Boot 集成 Spring Security的简单应用,从数据库读取数据校验用户,页面使用Thymeleaf模板


项目地址 https://github.com/helloworlde/SpringSecurity

演示 http://project.hellowood.com.cn/Security/

创建 Spring Boot 应用

添加依赖

    compile('org.springframework.boot:spring-boot-starter-security')compile('org.springframework.boot:spring-boot-starter-web')compile('org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.0')compile('org.springframework.boot:spring-boot-starter-thymeleaf')runtime('mysql:mysql-connector-java')runtime('org.springframework.boot:spring-boot-starter-tomcat')testCompile('org.springframework.boot:spring-boot-starter-test')testCompile('org.springframework.security:spring-security-test')    

创建用户表并插入数据

    CREATE TABLE user (id       INT                  AUTO_INCREMENT PRIMARY KEY,username VARCHAR(45) NOT NULL,password VARCHAR(45) NOT NULL,enabled  INT         NOT NULL DEFAULT 1);INSERT INTO user (username, password, enabled) VALUES ('username', 'password', TRUE);

添加配置信息

    spring.datasource.url=jdbc:mysql://localhost:3306/security?useSSL=falsespring.datasource.username=securityspring.datasource.password=securityspring.datasource.driver-class-name=com.mysql.jdbc.Drivermybatis.type-aliases-package=cn.com.hellowood.springsecurity.mappermybatis.mapper-locations=mappers/**Mapper.xml

添加 Security 配置文件

import cn.com.hellowood.springsecurity.security.CustomAuthenticationProvider;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;import org.springframework.security.config.annotation.web.builders.HttpSecurity;import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;@EnableWebSecuritypublic class SecurityConfig extends WebSecurityConfigurerAdapter {@Autowiredprivate CustomAuthenticationProvider customAuthenticationProvider;@Overrideprotected void configure(HttpSecurity http) throws Exception {// 所有请求均可访问http.authorizeRequests().antMatchers("/", "/login", "/login-error", "/css/**", "/index").permitAll();// 其余所有请求均需要权限http.authorizeRequests().anyRequest().authenticated();// 配置登录页面的表单 action 必须是 '/login', 用户名和密码的参数名必须是 'username' 和 'password',// 登录失败的 url 是 '/login-error'http.formLogin().loginPage("/login").loginProcessingUrl("/login").usernameParameter("username").passwordParameter("password").failureUrl("/login-error");}/*** Configure global.** @param auth the auth* @throws Exception the exception*/@Autowiredpublic void configureGlobal(AuthenticationManagerBuilder auth) {// 使用自定义的 Authentication Providerauth.authenticationProvider(customAuthenticationProvider);}}

添加自定义的 Authentication Provider 类

    import cn.com.hellowood.springsecurity.model.UserModel;import cn.com.hellowood.springsecurity.service.UserService;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.security.authentication.AccountExpiredException;import org.springframework.security.authentication.AuthenticationProvider;import org.springframework.security.authentication.BadCredentialsException;import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;import org.springframework.security.core.Authentication;import org.springframework.security.core.AuthenticationException;import org.springframework.security.core.GrantedAuthority;import org.springframework.stereotype.Component;import javax.servlet.http.HttpSession;import java.util.ArrayList;import java.util.List;@Componentpublic class CustomAuthenticationProvider implements AuthenticationProvider {private final Logger logger = LoggerFactory.getLogger(getClass());@Autowiredprivate HttpSession session;@Autowiredprivate UserService userService;/*** Validate user info is correct form database** @param authentication* @return* @throws AuthenticationException*/@Overridepublic Authentication authenticate(Authentication authentication) throws AuthenticationException {String username = authentication.getName();String password = authentication.getCredentials().toString();List<GrantedAuthority> grantedAuthorities = new ArrayList<>();// 检查用户名密码是否正确UserModel user = userService.loadUserByUsernameAndPassword(username, password);if (user == null) {logger.error("{} login failed, username or password is wrong", username);throw new BadCredentialsException("Username or password is not correct");} else if (!user.getEnabled()) {throw new AccountExpiredException("Account had expired");}// 用户信息有效时将其放入 session 中session.setAttribute("user", user);Authentication auth = new UsernamePasswordAuthenticationToken(username, password, grantedAuthorities);return auth;}@Overridepublic boolean supports(Class<?> authentication) {return authentication.equals(UsernamePasswordAuthenticationToken.class);}}

添加校验用户信息所需要的类

  • 添加 UserModel.java
public class UserModel {private Integer id;private String username;private String password;private Boolean enabled;/*** Instantiates a new User model.*/public UserModel() {}/*** Instantiates a new User model.** @param id       the id* @param username the username* @param password the password* @param enabled  the enabled*/public UserModel(Integer id, String username, String password, Boolean enabled) {this.id = id;this.username = username;this.password = password;this.enabled = enabled;}/*** Gets id.** @return the id*/public Integer getId() {return id;}/*** Sets id.** @param id the id*/public void setId(Integer id) {this.id = id;}/*** Gets username.** @return the username*/public String getUsername() {return username;}/*** Sets username.** @param username the username*/public void setUsername(String username) {this.username = username;}/*** Gets password.** @return the password*/public String getPassword() {return password;}/*** Sets password.** @param password the password*/public void setPassword(String password) {this.password = password;}/*** Gets enabled.** @return the enabled*/public Boolean getEnabled() {return enabled;}/*** Sets enabled.** @param enabled the enabled*/public void setEnabled(Boolean enabled) {this.enabled = enabled;}@Overridepublic String toString() {return "UserModel{" +"id=" + id +", username='" + username + '\'' +", password='" + password + '\'' +", enabled=" + enabled +'}';}}
  • 添加 UserService.java
import cn.com.hellowood.springsecurity.mapper.UserMapper;import cn.com.hellowood.springsecurity.model.UserModel;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;@Service("userService")public class UserService {@Autowiredprivate UserMapper userMapper;/*** Load user by username and password user model.** @param username the username* @param password the password* @return the user model*/public UserModel loadUserByUsernameAndPassword(String username, String password) {return userMapper.getUserByUsernameAndPassword(username, password);}}
  • 添加 UserMapper.java
    import cn.com.hellowood.springsecurity.model.UserModel;import org.apache.ibatis.annotations.Mapper;import org.apache.ibatis.annotations.Param;@Mapperpublic interface UserMapper {/*** Gets user by username and password.** @param username the username* @param password the password* @return the user by username and password*/UserModel getUserByUsernameAndPassword(@Param("username") String username,@Param("password") String password);}
  • 添加 UserMapper.xml
    <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><mapper namespace="cn.com.hellowood.springsecurity.mapper.UserMapper"><resultMap id="baseResultMap" type="cn.com.hellowood.springsecurity.model.UserModel"><id column="id" property="id" javaType="java.lang.Integer" jdbcType="INTEGER"></id><result column="username" property="username" javaType="java.lang.String" jdbcType="VARCHAR"></result><result column="password" property="password" javaType="java.lang.String" jdbcType="VARCHAR"></result><result column="enabled" property="enabled" javaType="java.lang.Boolean" jdbcType="INTEGER"></result></resultMap><select id="getUserByUsernameAndPassword" resultType="cn.com.hellowood.springsecurity.model.UserModel">SELECTid,username,password,enabledFROM userWHERE username = #{username, jdbcType=VARCHAR}AND password = #{password, jdbcType=VARCHAR}</select></mapper>

添加页面

  • index.html
    <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"><head><title>Spring Security</title><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/><link rel="stylesheet" href="/css/main.css" th:href="@{/css/main.css}"/><link rel="stylesheet" href="/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}"/></head><body><div class="container"><form action="#" class="form-signin"><h2 class="form-signin-heading">Hello Spring Security</h2><h5 class="form-signin-heading content-adjust">Anyone can access this page</h5><div th:if="${session.user} != null"><h5 class="form-signin-heading content-adjust">Your username is <span th:text="${session.user.username}"></span></h5><a href="/user/index" th:href="@{/user/index}" class="btn btn-success btn-block">To Security page</a></div><div th:if="${session.user} == null"><a href="/index" th:href="@{/login}" class="btn btn-primary btn-block">To Login page</a></div></form><div th:fragment="logout" class="logout" th:if="${session.user} != null"><form action="#" th:action="@{/logout}" method="post" class="form-signin"><button class="btn btn-warning btn-block" type="submit">Log out</button></form></div></div></body></html>
  • login.html
    <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"><head><title>Login page</title><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/><link rel="stylesheet" href="/css/main.css" th:href="@{/css/main.css}"/><link rel="stylesheet" href="/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}"/></head><body><div class="container"><form th:action="@{/login}" method="post" class="form-signin"><h2 class="form-signin-heading">Please sign in</h2><div><label for="username" class="sr-only">Username</label><input type="text" id="username" name="username"th:class="${loginError} ? 'form-control is-invalid' : 'form-control'" placeholder="Username"required="required"autofocus="autofocus"/><div class="invalid-feedback" th:if="${loginError}">Wrong username or password</div></div><div><label for="password" class="sr-only">Password</label><input type="password" id="password" name="password" class="form-control" placeholder="Password"required="required"/></div><button class="btn btn-success btn-block" type="submit">Sign in</button><a href="/index" th:href="@{/index}" class="btn btn-primary btn-block">Back to Home page</a></form></div></body></html>
  • user/index.html
    <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"><head><title>Spring Security</title><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/><link rel="stylesheet" href="/css/main.css" th:href="@{/css/main.css}"/><link rel="stylesheet" href="/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}"/></head><body><div class="container"><form action="#" class="form-signin"><h2 class="form-signin-heading">Hello Spring Security</h2><h5 class="form-signin-heading content-adjust">Only logged in user can access this page</h5><div th:if="${session.user} != null"><h5 class="form-signin-heading content-adjust">Logged user is <span th:text="${session.user.username}"></span></h5><a href="/index" th:href="@{/index}" class="btn btn-primary btn-block">Back to Home page</a></div></form><div th:substituteby="index::logout"></div></div></body></html>

添加 Controller

    import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;@Controllerpublic class MainController {/*** Root page.** @return the index page url*/@RequestMapping("/")public String root() {return "redirect:/index";}/*** Index page.** @return the index page url*/@RequestMapping("/index")public String index() {return "index";}/*** User index page.** @return the user index page url*/@RequestMapping("/user/index")public String userIndex() {return "user/index";}/*** Login page.** @return the login page url*/@RequestMapping("/login")public String login() {return "login";}/*** Login error page.** @param model the model* @return the login error page url*/@RequestMapping("/login-error")public String loginError(Model model) {model.addAttribute("loginError", true);return "login";}}

启动应用,访问http://localhost:8080/user/index,此时没有登录,会被拦截并重定向到登录页面http://localhost:8080/login,输入用户名 username 和密码 password,登录成功后再次访问http://localhost:8080/user/index,此时该 url 可以正常访问,当输入错误的用户名或密码时会提示错误信息,说明 Spring Security 配置正确

这篇关于Spring Boot 中集成 Spring Security的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1138640

相关文章

Spring boot整合dubbo+zookeeper的详细过程

《Springboot整合dubbo+zookeeper的详细过程》本文讲解SpringBoot整合Dubbo与Zookeeper实现API、Provider、Consumer模式,包含依赖配置、... 目录Spring boot整合dubbo+zookeeper1.创建父工程2.父工程引入依赖3.创建ap

SpringBoot结合Docker进行容器化处理指南

《SpringBoot结合Docker进行容器化处理指南》在当今快速发展的软件工程领域,SpringBoot和Docker已经成为现代Java开发者的必备工具,本文将深入讲解如何将一个SpringBo... 目录前言一、为什么选择 Spring Bootjavascript + docker1. 快速部署与

Spring Boot spring-boot-maven-plugin 参数配置详解(最新推荐)

《SpringBootspring-boot-maven-plugin参数配置详解(最新推荐)》文章介绍了SpringBootMaven插件的5个核心目标(repackage、run、start... 目录一 spring-boot-maven-plugin 插件的5个Goals二 应用场景1 重新打包应用

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

Spring Boot集成Druid实现数据源管理与监控的详细步骤

《SpringBoot集成Druid实现数据源管理与监控的详细步骤》本文介绍如何在SpringBoot项目中集成Druid数据库连接池,包括环境搭建、Maven依赖配置、SpringBoot配置文件... 目录1. 引言1.1 环境准备1.2 Druid介绍2. 配置Druid连接池3. 查看Druid监控

Java中读取YAML文件配置信息常见问题及解决方法

《Java中读取YAML文件配置信息常见问题及解决方法》:本文主要介绍Java中读取YAML文件配置信息常见问题及解决方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要... 目录1 使用Spring Boot的@ConfigurationProperties2. 使用@Valu

创建Java keystore文件的完整指南及详细步骤

《创建Javakeystore文件的完整指南及详细步骤》本文详解Java中keystore的创建与配置,涵盖私钥管理、自签名与CA证书生成、SSL/TLS应用,强调安全存储及验证机制,确保通信加密和... 目录1. 秘密键(私钥)的理解与管理私钥的定义与重要性私钥的管理策略私钥的生成与存储2. 证书的创建与

浅析Spring如何控制Bean的加载顺序

《浅析Spring如何控制Bean的加载顺序》在大多数情况下,我们不需要手动控制Bean的加载顺序,因为Spring的IoC容器足够智能,但在某些特殊场景下,这种隐式的依赖关系可能不存在,下面我们就来... 目录核心原则:依赖驱动加载手动控制 Bean 加载顺序的方法方法 1:使用@DependsOn(最直

SpringBoot中如何使用Assert进行断言校验

《SpringBoot中如何使用Assert进行断言校验》Java提供了内置的assert机制,而Spring框架也提供了更强大的Assert工具类来帮助开发者进行参数校验和状态检查,下... 目录前言一、Java 原生assert简介1.1 使用方式1.2 示例代码1.3 优缺点分析二、Spring Fr

java使用protobuf-maven-plugin的插件编译proto文件详解

《java使用protobuf-maven-plugin的插件编译proto文件详解》:本文主要介绍java使用protobuf-maven-plugin的插件编译proto文件,具有很好的参考价... 目录protobuf文件作为数据传输和存储的协议主要介绍在Java使用maven编译proto文件的插件