Java의 인증 및 권한 부여 프레임워크를 사용하여 사용자 인증 및 권한 관리를 구현하는 방법은 무엇입니까?
소개:
대부분의 애플리케이션에서 사용자 인증 및 권한 관리는 매우 중요한 기능입니다. Spring Security, Shiro 등과 같이 개발자가 사용할 수 있는 Java의 인증 및 권한 부여 프레임워크가 많이 있습니다. 이 기사에서는 Spring Security 프레임워크를 사용하여 사용자 인증 및 권한 관리를 구현하는 방법에 중점을 둘 것입니다.
1. Spring Security 소개
Spring Security는 Spring 프레임워크 기반의 플러그인으로 인증 및 권한 부여 기능을 추가하는 데 사용할 수 있습니다. Spring Security는 사용자 인증, 역할 관리, 권한 관리 등 다양한 기능을 제공합니다.
2. 인증
인증은 사용자의 신원을 확인하는 과정입니다. Spring Security에서는 인증 공급자를 구성하여 사용자 인증을 수행할 수 있습니다.
52b82e06fe430ab7919c3a04d90647be
요소를 사용하여 정의할 수 있습니다. 52b82e06fe430ab7919c3a04d90647be
元素来定义认证提供程序。<authentication-manager> <authentication-provider user-service-ref="userDetailsService"/> </authentication-manager>
UserDetailsService
接口来实现这个类。@Service public class CustomUserDetailsService implements UserDetailsService { @Autowired private UserRepository userRepository; @Override public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { User user = userRepository.findByUsername(username); if (user == null) { throw new UsernameNotFoundException("User not found with username: " + username); } return new org.springframework.security.core.userdetails.User(user.getUsername(), user.getPassword(), getAuthorities(user.getRoles())); } private Collection<? extends GrantedAuthority> getAuthorities(Collection<Role> roles) { return roles.stream().map(role -> new SimpleGrantedAuthority(role.getName())).collect(Collectors.toList()); } }
users
和roles
CREATE TABLE users ( id BIGINT AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50) NOT NULL, password VARCHAR(100) NOT NULL ); CREATE TABLE roles ( id BIGINT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(50) NOT NULL ); CREATE TABLE user_roles ( user_id BIGINT, role_id BIGINT, FOREIGN KEY (user_id) REFERENCES users(id), FOREIGN KEY (role_id) REFERENCES roles(id), PRIMARY KEY (user_id, role_id) );
UserDetailsService
인터페이스를 구현하여 이 클래스를 구현할 수 있습니다. @Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter { @Autowired private UserDetailsService userDetailsService; @Override protected void configure(HttpSecurity http) throws Exception { http .authorizeRequests() .antMatchers("/").permitAll() .antMatchers("/admin/**").hasRole("ADMIN") .anyRequest().authenticated() .and() .formLogin() .loginPage("/login") .permitAll() .and() .logout() .permitAll(); } @Autowired public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder()); } @Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); } }
또한 사용자 정보를 저장할 데이터베이스 테이블을 생성해야 합니다. 사용자
와 역할
이라는 두 개의 테이블을 생성할 수 있습니다.
@Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http .authorizeRequests() .antMatchers("/admin/**").access("hasRole('ADMIN')") .anyRequest().authenticated(); } }
@RestController @RequestMapping("/api") public class ApiController { @PreAuthorize("hasRole('USER')") @GetMapping("/users") public List<User> getUsers() { // code here } @PreAuthorize("hasRole('ADMIN')") @PostMapping("/user") public User createUser(@RequestBody User user) { // code here } }
은 URL 규칙 및 액세스 권한을 구성하여 특정 URL에 대한 액세스 제어를 실현할 수 있습니다.
위 내용은 사용자 인증 및 권한 관리를 구현하기 위해 Java의 인증 및 권한 부여 프레임워크를 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!