Spring Security 使用教程

2024-08-30 04:20

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

Spring Security 使用教程

引言

Spring Security 是一个功能强大且高度可定制的身份验证和访问控制框架,专为基于Spring的应用程序设计。本教程将指导你如何在一个简单的Spring Boot应用程序中集成Spring Security,以实现基本的用户认证和授权功能。

环境准备

确保你已经安装了以下软件:

  • Java Development Kit (JDK) 1.8 或更高版本
  • Maven 或 Gradle(用于构建项目)
  • IDE(如 IntelliJ IDEA, Eclipse 或 Spring Tool Suite)

创建Spring Boot项目

  1. 使用Spring Initializr(https://start.spring.io/)

    • 选择你的项目元数据(如 Group, Artifact, Name, Description, Package name, Packaging, Java, Spring Boot 版本等)。
    • 添加 Spring WebSpring Security 依赖。
    • 生成项目并下载。
  2. 解压并导入到IDE中

    • 解压下载的项目文件。
    • 在你的IDE中导入这个Maven项目。

配置Spring Security

  1. 添加Security配置类
    src/main/java/com/example/demo/config(或你的包路径)下创建一个名为 SecurityConfig.java 的类。

    package com.example.demo.config;import org.springframework.context.annotation.Configuration;
    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;@Configuration
    @EnableWebSecurity
    public class SecurityConfig extends WebSecurityConfigurerAdapter {@Overrideprotected void configure(HttpSecurity http) throws Exception {http.authorizeRequests().antMatchers("/", "/home").permitAll() // 允许所有人访问.anyRequest().authenticated() // 其他请求都需要认证.and().formLogin() // 使用表单登录.loginPage("/login") // 指定登录页面.permitAll() // 允许所有人访问登录页面.and().logout() // 登出配置.permitAll(); // 允许所有人访问登出功能}// 这里可以配置内存中的用户,实际开发中通常会连接数据库@Overrideprotected void configure(AuthenticationManagerBuilder auth) throws Exception {auth.inMemoryAuthentication().withUser("user").password("{noop}password").roles("USER");}
    }
    
  2. 创建Controller
    src/main/java/com/example/demo/controller 下创建一个名为 HomeController.java 的类。

    package com.example.demo.controller;import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.GetMapping;@Controller
    public class HomeController {@GetMapping("/")public String home() {return "redirect:/home";}@GetMapping("/home")public String homePage() {return "home";}@GetMapping("/login")public String loginPage() {return "login";}
    }
    
  3. 添加Thymeleaf模板
    src/main/resources/templates 下创建 home.htmllogin.html

    login.html 示例:

    <!DOCTYPE html>
    <html xmlns:th="http://www.thymeleaf.org">
    <head><title>Login</title>
    </head>
    <body><h2>Login Page</h2><form th:action="@{/login}" method="post"><div><label> Username: </label><input type="text" name="username"/></div><div><label> Password: </label><input type="password" name="password"/></div><div><button type="submit">Sign In</button></div></form>
    </body>
    </html>
    

    home.html 示例:

    <!DOCTYPE html>
    <html xmlns:th="http://www.thymeleaf.org">
    <head><title>Home</title>
    </head>
    <body><h1>Welcome Home!</h1>
    </body>
    </html>
    

运行和测试

  1. 运行你的Spring Boot应用
    在IDE中运行你的主应用类(通常带有 @SpringBootApplication 注解)。

  2. 访问应用

    • 在浏览器中访问 http://localhost:8080/,你应该会被重定向到登录页面。
    • 使用用户名 user 和密码 password 登录。
    • 登录成功后,你应该能看到欢迎页面。

结论

通过以上步骤,你已经成功地在Spring Boot应用中集成了Spring Security,并实现了基本的用户认证和授权功能。你可以根据需要进一步扩展和定制安全配置,如连接数据库进行用户认证、实现更复杂的权限控制等。

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



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

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

Security OAuth2 单点登录流程

单点登录(英语:Single sign-on,缩写为 SSO),又译为单一签入,一种对于许多相互关连,但是又是各自独立的软件系统,提供访问控制的属性。当拥有这项属性时,当用户登录时,就可以获取所有系统的访问权限,不用对每个单一系统都逐一登录。这项功能通常是以轻型目录访问协议(LDAP)来实现,在服务器上会将用户信息存储到LDAP数据库中。相同的,单一注销(single sign-off)就是指

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na