일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- C++
- STT
- google login
- html
- 커스텀 데이터 학습
- Spring Boot
- 양방향 매핑
- idToken
- JPA
- javascript
- 코드업
- Expo
- @Transactional
- AWS
- yolo
- YOLOv5
- pandas
- 2021 제9회 문화공공데이터 활용경진대회
- 순환참조
- skt fellowship 3기
- google cloud
- react native
- marksense.ai
- Loss Function
- OG tag
- google 로그인
- oauth
- matplotlib
- 졸프
- Spring
Archives
- Today
- Total
목록🍃spring boot/spring security (2)
민팽로그

spring security? 스프링 서버에 필요한 인증 및 인가를 위한 다양한 기능을 제공하는 프레임워크로 로그인 기능을 구현할 수 있음 - gradle 사용 시 다음을 추가하여 사용할 수 있음 implementation 'org.springframework.boot:spring-boot-starter-security' - 아래 예시 코드와 같은 형식으로 스프링 시큐리티를 활성화 할 수 있음 @Configuration @EnableWebSecurity // 스프링 Security 지원을 가능하게 함 @EnableGlobalMethodSecurity(securedEnabled = true) //권한 부여가 가능하게 함 public class WebSecurityConfig extends WebSecuri..
🍃spring boot/spring security
2021. 9. 13. 01:20