๐ Spring Security ์์ ๊ณ์
Security filterChain ์์ ๊ถํ ๊ฒ์ฌ๋ฅผ ์ค์ ํ ๊ฒฝ์ฐ ์ด๋ฅผ ํต๊ณผํ๊ธฐ ์ํด ๋ก๊ทธ์ธ์ด ํ์!!
๊ธฐ๋ณธ ํผ์ ํ์ฑํ ํ๋ฉด ์๋์ผ๋ก ๋ก๊ทธ์ธ์ฐฝ์ด ๋ฌ๋ค.
์ด๋ DB์ฐ๊ฒฐ ์ ์ด๋ผ๋ฉด ์์๊ณ์ ์ด ํ์ํ๋ค.
๐ ์ธ์ฆ ํํฐ
http.authorizeExchange(exchanges -> exchanges.anyExchange().authenticated());
๐ ๊ธฐ๋ณธ ๋ก๊ทธ์ธ ํผ ํ์ฑํ
http.authorizeHttpRequests()
.anyRequest().authenticated()
.and()
.formLogin(); // ๊ธฐ๋ณธ ๋ก๊ทธ์ธ ํผ ํ์ฑํ
๐ Spring Security ๊ณ์ ์์ฑ ๋ฐฉ๋ฒ
โ 1. ์๋ ์์ฑ - ๋ก๊ทธ ํ์ธ
Spring Security๋ app์ด ์์ ๋ ๋ ๊ธฐ๋ณธ์ ์ผ๋ก ์์ ๋น๋ฐ๋ฒํธ๋ฅผ ์์ฑํ์ฌ ๋ก๊ทธ์ ์ถ๋ ฅํ๋ค.
๐ ์์
- ๋ก๊ทธ์์ Using generated security password: <์์ ๋น๋ฐ๋ฒํธ>๋ฅผ ์ฐพ๊ธฐ!!
- Username์ ๊ธฐ๋ณธ๊ฐ์ผ๋ก user
โ 2. ์ ํ๋ฆฌ์ผ์ด์ ์ค์ ํ์ผ
application.properties ๋๋ application.yml ํ์ผ์ ์๋ ๋ด์ฉ์ ์ถ๊ฐํ์ฌ ์ฌ์ฉ์ ๊ณ์ ์ ๋ช ์์ ์ผ๋ก ์ค์
๐ ์์
spring.security.user.name=admin
spring.security.user.password=admin123
- Username: admin
- Password: admin123
โ 3. UserDetailsService ์ด์ฉ
*UserDetailsService ๋ Spring Security์์ ์ฌ์ฉ์ ์ธ์ฆ์ ๋ด๋นํ๋ ์ธํฐํ์ด์ค๋ค.
InMemoryUserDetailsManager ๊ฐ์ฒด๋ฅผ ๋ง๋ค์ด์ ์ฌ์ฉ์ ๊ณ์ ์ ๋ฉ๋ชจ๋ฆฌ์ ์ ์ฅ
๐ ์์
@Bean
public UserDetailsService userDetailsService() {
InMemoryUserDetailsManager manager = new InMemoryUserDetailsManager();
manager.createUser(User.withUsername("user")
.password(passwordEncoder().encode("password"))
.roles("USER")
.build());
return manager;
}
- Username: user
- Password: password
'Backend > spring' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Spring Security] Web vs WebFlux Spring Security ์ค์ (0) | 2025.02.23 |
---|---|
web vs webflux (0) | 2025.02.23 |
[Spring Security] Spring Security๋? (0) | 2025.02.16 |
DTO ์์ฑ ๋ฐฉ๋ฒ - Array ๋ฐ Object ํ์ (0) | 2024.11.18 |
MyBatis ์ฐ๊ฒฐ (Spring DAO ์์ฑ ๋ฐฉ๋ฒ) (0) | 2024.10.30 |