SpringBoot 와 spring security 의 결합 예시
4093 단어 SpringBootspringsecurity
됐어,쓸데없는 소리 하지 말고 pom 에 올 라 가.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
spring-boot-starter-security 에는 spring security 에 필요 한 의존 도가 포장 되 어 있 습 니 다.우리 가 하나하나 배치 할 필요 가 없고 우리 의 조작 을 간소화 하 며 우리 의 시간 을 절약 했다.이런 기업 급 구 조 는 매우 주도면밀 하 게 고려 한 것 이다.만약 에 우리 가 jar 를 추가 하면 버 전 간 의 불 균형 으로 인해 여러 가지 문제 가 발생 할 수 있다.이것 은 모두 주제 밖의 이야기 이 고 감탄 하 며 우 리 는 계속 할 것 이다.설정 클래스 보기
package com.shuqi;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.annotation.Order;
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;
@EnableWebSecurity
public class SecurityConfig {
@Configuration
public static class WebSecurityConfigurationAdapter extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
http
.authorizeRequests()
.antMatchers(
"/index"
).hasRole("ADMIN")
.anyRequest().permitAll()
.and()
.httpBasic()
;
}
}
}
이 설정 은 중국어 로 번역 되 었 습 니 다./index 에 접근 하려 면 ADMIN 권한 이 필요 합 니 다.다른 것 은 모두 허용 합 니 다.때때로 우 리 는 코드 만 주의 할 수 있 습 니 다.사실 이 주 해 는@EnableWebSecurity 가 더 중요 합 니 다.그 는 spring security 의 시작 이기 때문에 그 는 많은 설정 류 를 도입 해서 security 가 효력 을 발생 합 니 다.저 희 는 ADMIN 권한 을 설 정 했 지만 ADMIN 권한 에 대응 하 는 사용자 이름 비밀 번 호 를 설정 하지 않 았 기 때문에 설정 파일 을 보십시오.
security:
user:
name: root
password: root
role: ADMIN
설정 이 얼마 남지 않 았 습 니 다.저희 컨트롤 러 를 보 세 요.
package com.shuqi.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/index")
public String index(){
return "hello world index";
}
@RequestMapping("/index1")
public String index1(){
return "hello world index1";
}
}
차단 되 지 않 는/index,차단 되 지 않 는/index 1,차이 점 을 보 세 요.프로젝트 시작,접근/index접근 제어 가 추가 되 었 습 니 다.설정 한 루트,루트 를 입력 하 십시오.
결 과 를 볼 수 있 습 니 다.
/index 1 을 입력 하면 결 과 를 직접 볼 수 있 습 니 다.
우리 의 설정 이 유효 하 다 는 것 을 설명 합 니 다.spring security 는 우리 가 방문 통 제 를 하 는 데 도움 을 주 었 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Java・SpringBoot・Thymeleaf】 에러 메세지를 구현(SpringBoot 어플리케이션 실천편 3)로그인하여 사용자 목록을 표시하는 응용 프로그램을 만들고, Spring에서의 개발에 대해 공부하겠습니다 🌟 마지막 데이터 바인딩에 계속 바인딩 실패 시 오류 메시지를 구현합니다. 마지막 기사🌟 src/main/res...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.