当前位置: 首页 > article >正文

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 {
    
        @Override
        protected void configure(HttpSecurity http) throws Exception {
            http
                .authorizeRequests()
                    .antMatchers("/", "/home").permitAll() // 允许所有人访问
                    .anyRequest().authenticated() // 其他请求都需要认证
                    .and()
                .formLogin() // 使用表单登录
                    .loginPage("/login") // 指定登录页面
                    .permitAll() // 允许所有人访问登录页面
                    .and()
                .logout() // 登出配置
                    .permitAll(); // 允许所有人访问登出功能
        }
    
        // 这里可以配置内存中的用户,实际开发中通常会连接数据库
        @Override
        protected 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,并实现了基本的用户认证和授权功能。你可以根据需要进一步扩展和定制安全配置,如连接数据库进行用户认证、实现更复杂的权限控制等。


http://www.kler.cn/a/281725.html

相关文章:

  • Java 核心技术卷 I 学习记录八
  • 视频融合×室内定位×数字孪生
  • 数据结构(一)链表
  • 麒麟时间同步搭建chrony服务器
  • IO技术详解
  • Figma中文网:UI设计师的新资源宝库
  • 零基础5分钟上手亚马逊云科技-云原生架构设计
  • Ubuntu20.04安装 docker和docker-compose环境
  • 数据分析之Python对数据分组排序
  • 【qiankun】使用总结
  • 【C语言从不挂科到高绩点】04-流程控制语句-if
  • 与树懒论文一起展望学术写作的未来:AI与人类创造力的交汇点
  • 【Linux应用编程实战】常见函数应用
  • 程序猿成长之路之数据挖掘篇——Kmeans聚类算法
  • SpringBoot日常:Spring之@PostConstruct解析
  • Windows中Jupyter notebook设置默认目录
  • 全志/RK安卓屏一体机:医疗手推车解决方案,支持鸿蒙国产化
  • 中间件实时监控,运维难题一站解决
  • 【LeetCode】搜索旋转排序数组[python]
  • 【Linux】如何用一条命令终止某个后台进程?
  • AI学习记录 - 模型训练中怎么反向传播以及学习率的影响
  • CSS 的font-synthesis属性与中文体验增强
  • 手机号码归属地查询如何用PHP进行调用
  • zoom 会议 javascript 转录例子
  • 第四十篇-TeslaP40+Ollama+Ollama-WebUI(自编译)
  • Python-MNE-源定位和逆问题01:源估计(SourceEstimate)数据结构