Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- write by chatGPT
- flet
- Spring boot
- 코틀린
- 리눅스
- 웹 크롤링
- 소프트웨어공학
- write by GPT-4
- NIO
- 인프라
- GPT-4's answer
- chatGPT's answer
- 고전역학
- 파이썬
- 데이터베이스
- 자바네트워크
- Database
- oracle
- kotlin
- 자바암호
- 시스템
- 자바
- 역학
- Java
- jpa
- spring data jpa
- python
- JVM
- android
- 유닉스
Archives
- Today
- Total
목록2024/12/03 (1)
728x90
Akashic Records
Spring Security 6.4 새로운 기능
Spring Security 6.4에서 기존 방식에서 새로운 방식으로 변경된 내용을 더 자세히 살펴보겠습니다.1. authorizeRequests() → authorizeHttpRequests()기존 방식@Overrideprotected void configure(HttpSecurity http) throws Exception { http .authorizeRequests() .antMatchers("/public/**").permitAll() .antMatchers("/admin/**").hasRole("ADMIN") .anyRequest().authenticated() .and() .formLogin..
Spring.io
2024. 12. 3. 17:14