**已关闭。**此问题需要debugging details。目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
27天前关闭。
Improve this question的
我一直在努力将SecurityConfig文件Map到较新的Spring版本。具体来说,这个问题(我认为)是由UserDetailsService()或与之相关的东西引起的。我试图通过将原始密码传递到登录页面来登录,而加密密码则硬编码到数据库中(我刚刚粘贴了encode()方法返回的字符串)。在尝试这样做的同时,我得到了以下消息:
Hibernate: select u1_0.id,u1_0.name,u1_0.password,u1_0.username from users u1_0 where u1_0.username=?
Hibernate: select a1_0.user_id,a1_0.id,a1_0.authority from authority a1_0 where a1_0.user_id=?
字符串
看起来好像id在某个地方没有正确传递,但我不确定对此有什么感觉。我只是无法正确登录。
下面我将向你展示我来自哪里,我有什么atm,以及其他一些文件,但是它们应该很好,因为在Sping Boot 3中对它们的编码方式没有太多更改。无论如何,因为我不确定它们可能会有帮助,所以它们在这里:
旧文件:
@Configuration
public class WebSecurityConfiguration extends WebSecurityConfigurerAdapter {
@Autowired
private UserDetailsService userDetailsService;
@Bean
public PasswordEncoder getPasswordEncoder() {
return new BCryptPasswordEncoder();
}
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.userDetailsService(userDetailsService)
.passwordEncoder(getPasswordEncoder());
// auth.inMemoryAuthentication()
// .passwordEncoder(getPasswordEncoder())
// .withUser("[email protected]")
// .password(getPasswordEncoder().encode("asdfasdf"))
// .roles("USER");
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/").permitAll()
.anyRequest().hasRole("USER").and()
.formLogin()
.loginPage("/login")
.defaultSuccessUrl("/dashboard")
.permitAll()
.and()
.logout()
.logoutUrl("/logout")
.permitAll();
}
}
型
新文件:
@Configuration
@EnableWebSecurity
public class WebSecurityConfig
{
@Autowired
private UserDetailsService userDetailsService;
@Bean
public UserDetailsService userDetailsService()
{
return new UserDetailsServiceImpl();
}
@Bean
public PasswordEncoder passwordEncoder()
{
return new BCryptPasswordEncoder();
}
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception
{
return
http.authorizeHttpRequests()
.requestMatchers("/").permitAll()
.anyRequest().hasRole("USER")
.and()
.formLogin()
.loginPage("/login")
.defaultSuccessUrl("/dashboard")
.permitAll()
.and()
.logout()
.logoutUrl("/logout").permitAll()
.and().build();
}
@Bean
public AuthenticationProvider authenticationProvider()
{
DaoAuthenticationProvider authenticationProvider=new DaoAuthenticationProvider();
authenticationProvider.setUserDetailsService(userDetailsService());
authenticationProvider.setPasswordEncoder(passwordEncoder());
return authenticationProvider;
}
}
型
UserDetailsServiceImpl:
@Service
public class UserDetailsServiceImpl implements UserDetailsService
{
@Autowired
private UserRepository userRepo;
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException
{
User user = userRepo.findByUsername(username);
if(user == null)
{
throw new UsernameNotFoundException("Invalid username and password");
}
return new CustomSecurityUser(user);
}
}
型
CustomSecurityUser:
public class CustomSecurityUser extends User implements UserDetails
{
private static final long serialVersionUID = 464958176L;
public CustomSecurityUser()
{}
public CustomSecurityUser(User user)
{
this.setAuthorities(user.getAuthorities());
this.setId(user.getId());
this.setName(user.getName());
this.setPassword(user.getPassword());
this.setUsername(user.getUsername());
}
@Override
public Set<Authority> getAuthorities()
{
return super.getAuthorities();
}
@Override
public String getPassword()
{
return super.getPassword();
}
@Override
public String getUsername()
{
return super.getUsername();
}
@Override
public boolean isAccountNonExpired()
{
return true;
}
@Override
public boolean isAccountNonLocked()
{
return true;
}
@Override
public boolean isCredentialsNonExpired()
{
return true;
}
@Override
public boolean isEnabled()
{
return true;
}
}
型
UserRepository:
public interface UserRepository extends JpaRepository<User, Long>
{
User findByUsername(String username);
}
型
权限:
package com.freshvotes.security;
import org.springframework.security.core.GrantedAuthority;
import com.freshvotes.domain.User;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.ManyToOne;
@Entity
public class Authority implements GrantedAuthority
{
private static final long serialVersionUID = -6420181486L;
private Long id;
private String authority;
private User user;
@Override
public String getAuthority()
{
return this.authority;
}
public void setAuthority(String authority)
{
this.authority = authority;
}
@Id @GeneratedValue(strategy=GenerationType.IDENTITY)
public Long getId()
{
return this.id;
}
public void setId(Long id)
{
this.id = id;
}
@ManyToOne()
public User getUser()
{
return this.user;
}
public void setUser(User user)
{
this.user = user;
}
}
型
用户实体:
@Entity
@Table(name = "users")
public class User
{
private Long id;
private String username;
private String password;
private String name;
private Set<Authority> authorities = new HashSet<>();
@Id @GeneratedValue(strategy=GenerationType.IDENTITY)
public Long getId()
{
return id;
}
public void setId(Long id)
{
this.id = id;
}
public String getUsername()
{
return username;
}
public void setUsername(String username)
{
this.username = username;
}
public String getPassword()
{
return password;
}
public void setPassword(String password)
{
this.password = password;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER, mappedBy="user")
public Set<Authority> getAuthorities()
{
return this.authorities;
}
public void setAuthorities(Set<Authority> authorities)
{
this.authorities = authorities;
}
}
型
我希望这将是有可能作出的东西了。我删除了进口,因为我不能张贴我的问题,否则。
1条答案
按热度按时间xeufq47z1#
您的数据库中的数据似乎有问题。我克隆了您的存储库并通过添加数据进行了测试,它似乎在我这边正常运行。
要进行故障排除,请尝试在登录页面上使用以下凭据:密码-
user
和密码-password
。此外,以下是我插入数据库的数据的详细信息:
用户表:
字符串
权限表:
型
如果你是新手,我建议在你的application properties文件中添加以下行。这将为Spring Security启用详细的日志记录,帮助你跟踪和调试潜在的问题:
将以下行添加到
application.properties
文件中:型
此外,在
WebSecurityConfig
中,您可以通过在@EnableWebSecurity
annotation中添加debug = true
来启用调试。下面是一个示例:型