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
- chatGPT's answer
- write by GPT-4
- JVM
- jpa
- spring integration
- 소프트웨어공학
- oracle
- python
- kotlin
- 코틀린
- 데이터베이스
- 파이썬
- 자바네트워크
- NIO
- 고전역학
- 리눅스
- spring data jpa
- Database
- flet
- Java
- 자바
- GPT-4's answer
- 시스템
- 자바암호
- android
- 인프라
- 유닉스
- write by chatGPT
- 역학
- 웹 크롤링
Archives
- Today
- Total
목록2024/12/03 (1)
728x90
기억을 지배하는 기록
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