在Spring安全登录中添加额外的用户需求,并处理各种异常,可以通过以下步骤实现:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
@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");
}
return new org.springframework.security.core.userdetails.User(user.getUsername(), user.getPassword(), new ArrayList<>());
}
}
@Entity
@Table(name = "users")
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(unique = true)
private String username;
private String password;
// Getters and setters
}
<form th:action="@{/login}" method="post">
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required autofocus/>
</div>
<div>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required/>
</div>
<div>
<button type="submit">Login</button>
</div>
</form>
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
private CustomUserDetailsService userDetailsService;
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.userDetailsService(userDetailsService);
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/login").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.defaultSuccessUrl("/home")
.permitAll()
.and()
.logout()
.permitAll();
}
}
在上述代码中,configure(AuthenticationManagerBuilder auth)
方法配置了自定义的用户认证服务,configure(HttpSecurity http)
方法配置了登录页面、登录成功后的默认跳转页面和注销功能。
@ControllerAdvice
public class CustomExceptionHandler {
@ExceptionHandler(UsernameNotFoundException.class)
public ResponseEntity<String> handleUsernameNotFoundException(UsernameNotFoundException ex) {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body(ex.getMessage());
}
@ExceptionHandler(AuthenticationException.class)
public ResponseEntity<String> handleAuthenticationException(AuthenticationException ex) {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body(ex.getMessage());
}
}
在上述代码中,handleUsernameNotFoundException()
方法处理用户名未找到异常,handleAuthenticationException()
方法处理认证异常。可以根据实际需求添加其他异常处理方法。
这样,就完成了在Spring安全登录中添加额外的用户需求,并处理各种异常的操作。
关于Spring Security的更多信息和使用方法,可以参考腾讯云的产品介绍链接:Spring Security产品介绍
北极星训练营
云+社区技术沙龙[第7期]
新知
DB-TALK 技术分享会
云+社区技术沙龙[第27期]
云+社区技术沙龙[第22期]
腾讯云GAME-TECH沙龙
DBTalk
新知
高校公开课
领取专属 10元无门槛券
手把手带您无忧上云