开发实例(三)

本文通过实例展示了如何在Spring Boot项目中添加依赖,包括在pom.xml文件中引入依赖,创建SpringSecurityConfig配置类,实现自定义密码编码器MyPasswordEncoder,并进行测试,如访问demo、login和list等页面。
摘要由CSDN通过智能技术生成

添加依赖

  • 在项目pom.xml文件中添加依赖
    在这里插入图片描述
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-security</artifactId>
</dependency>
  • 在config下创建SpringSecurityConfig并添加代码

在这里插入图片描述

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.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;


@Configuration
@EnableWebSecurity
public class SpringSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication()
                .passwordEncoder(new MyPasswordEncoder())
                .withUser("admin")
                .password(new MyPasswordEncoder().encode("123456"))
                .roles("ADMIN");
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {

        http.authorizeRequests()
                .antMatchers("/").permitAll()
                .anyRequest().authenticated()
                .and()
                .logout().permitAll()
                .and()
                .formLogin();
        http.csrf().disable();
    }

    @Override
    public void configure(WebSecurity web) throws Exception {
        web.ignoring().antMatchers("/js/**","/css/**","/image/**");
    }
}

  • 在config里创建MyPasswordEncoder文件并添加代码
    在这里插入图片描述
package com.example.demo.config;

import org.springframework.security.crypto.password.PasswordEncoder;

public class MyPasswordEncoder implements PasswordEncoder {
    
    
    final  static String SALT = "123456";

    @Override
    public String encode(CharSequence charSequence) {
        System.out.println(charSequence + SALT);

        return charSequence + SALT;
    }

    @Override
    public boolean matches(CharSequence charSequence, String s) {
        System.out.println("加密的密码:"+s);
        System.out.println("未加密的密码:"+charSequence);
        return s.equals(charSequence+SALT);
    }
}

  • 测试
  1. 访问http://localhost/demo/
    在这里插入图片描述

  2. 访问http://localhost/demo/login
    在这里插入图片描述

  3. http://localhost/demo/list
    在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值