Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Java SpringBoot Security Framework to integrate Spring Security

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

How to use Java SpringBoot security framework to integrate Spring Security, I believe that many inexperienced people do not know what to do. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

1. Introduction to industrial security framework

Spring Security is based on Spring development. If Spring is used as the basis in the project, it is more convenient to do permissions with Spring Security, while Shiro needs to be integrated with Spring. Therefore, Spring Security, as a bucket in the spring family, is commonly used in the field of java.

two。 It is recommended to build Spring Security environment 2.1 to add related dependencies 4.0.0 org.example springsecurityReview 1.0-SNAPSHOT spring-boot-dependencies org.springframework.boot 2.5.4 org.springframework.boot spring-boot-starter-web org.springframework.boot to pom.xml Spring-boot-starter-security org.springframework.boot spring-boot-starter-thymeleaf 2.2 create the Handler class package com.example.controller Import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;@Controllerpublic class Handler {@ GetMapping ("/ index") public String index () {return "index";}} 2.3 create a simple html and configure the path to the related thymeleaf

2.4.After adding a startup class, our integration test completes package com.example;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class Application {public static void main (String [] args) {SpringApplication.run (Application.class,args);}} 2.5.The result shows that the user name defaults to user, and the password randomly generates this string of numbers.

3. The advanced version is customized with 3.1 username and password

3.2 create an Encoder under the config package

Carry on the password check and transcode operation, convert the password into string form, and wake up through the match method to check.

3.3.Grant account role permissions package com.example.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.WebSecurityConfigurerAdapter @ Configurationpublic class SecurityConfig extends WebSecurityConfigurerAdapter {/ / relationship between roles and resources @ Override protected void configure (HttpSecurity http) throws Exception {http.authorizeRequests () .antMatchers ("/ admin"). HasRole ("ADMIN") .antMatrices ("/ index") .access ("hasRole ('ADMIN') or hasRole (' USER')") .anyRequest (). Authenticated () .and () .formLogin () .loginPage ("/ login") .permitAll () .and () .logout () .permitAll () .and () .csrf () .disable () @ Override protected void configure (AuthenticationManagerBuilder auth) throws Exception {auth.inMemoryAuthentication () .passwordEncoder (new MyPasswordEncoder ()) .withUser ("user") .password (new MyPasswordEncoder () .encode ("000000"). Roles ("USER") .and () .withUser ("admin") .password (new MyPasswordEncoder () .encode ("123")) .roles (" ADMIN "," USER ");}}

Finally, the admin account can access admin.html and index.html.

User can only access the operations of index.html

After reading the above, have you learned how to use the Java SpringBoot security framework to integrate Spring Security? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report