@Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder()); } @Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); }和@Autowired public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { auth.inMemoryAuthentication() .withUser("admin").password("{noop}admin").roles("ADMIN") .and() .withUser("user").password("{noop}user").roles("USER"); }区别
时间: 2024-04-26 11:26:40 浏览: 135
这两段代码都是 Spring Security 中用于配置认证的代码,但是它们的实现方式不同。
第一段代码使用了一个实现了 UserDetailsService 接口的类来获取用户信息,并指定了一个密码加密器 BCryptPasswordEncoder。这意味着用户信息是从某个数据源中获取的,比如数据库或者 LDAP,而密码是经过加密的。这种方式通常适用于生产环境中,因为它提供了更加安全的密码存储方式和更加灵活的用户信息获取方式。
第二段代码使用了一个内存中的用户存储方式,并且使用了一个明文密码(即 {noop} 前缀),这意味着用户信息和密码都是硬编码在代码中的。这种方式适用于开发和测试环境中,因为它提供了更加方便的配置方式和更加快速的启动时间。
总的来说,第一种方式更加安全和灵活,但需要更多的配置和准备工作,而第二种方式则更加方便和快速,但不够安全和灵活。具体使用哪种方式,需要根据具体的业务需求和安全要求来确定。
相关问题
@Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(hrService); } //处理postman接口出现not response情况,访问login页时不需要security拦截 @Override public void configure(WebSecurity web) throws Exception { System.out.println("WebSecurity++++++"); web.ignoring().antMatchers("/login","/verifyCode","/common/**"); }
这是一个使用Spring Security的配置类,它完成了以下几个任务:
1. 配置PasswordEncoder:使用BCryptPasswordEncoder作为密码加密器。
2. 配置AuthenticationManagerBuilder:使用hrService作为用户认证的实现类。
3. 配置WebSecurity:忽略/login、/verifyCode和/common/**这些URL,访问它们时不需要进行安全认证。
具体解释如下:
- 配置PasswordEncoder:通过@Bean注解创建一个BCryptPasswordEncoder实例,并将其返回。这里使用BCrypt算法对密码进行加密,保证密码的安全性。
- 配置AuthenticationManagerBuilder:通过调用auth.userDetailsService(hrService)方法,将hrService设置为用户认证的实现类。hrService需要实现UserDetailsService接口,通过该接口的loadUserByUsername()方法,从数据库或其他数据源中获取用户信息。
- 配置WebSecurity:通过重写configure(WebSecurity web)方法,配置WebSecurity。在这里,我们忽略了/login、/verifyCode和/common/**这些URL,访问它们时不需要进行安全认证。这里的configure(WebSecurity web)方法是为了解决在使用Postman测试接口时出现not response的问题。
需要注意的是,这里只是一个简单的示例代码,实际的配置可能会更加复杂,需要根据具体的业务场景进行调整。
登录接口逻辑@Override public UserDetails loadUserByUsername(String phone) throws UsernameNotFoundException { User user = selectUserByPhone(phone); if (null == user) { throw new UsernameNotFoundException("User not found with phone: " + phone); } return new org.springframework.security.core.userdetails.User(user.getPhoneNumber(), user.getPassword(), getAuthority(user)); } private List<GrantedAuthority> getAuthority(User user) { return Arrays.asList(new SimpleGrantedAuthority("ROLE_" + user.getRole())); },接口鉴权代码http.csrf().disable() .authorizeRequests() .antMatchers("/api-docs/**").permitAll() .antMatchers("/swagger-ui.html").permitAll() .antMatchers("/swagger-resources/**").permitAll() .antMatchers("/webjars/**").permitAll() .anyRequest().authenticated() .and() .httpBasic();和@Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder()); } @Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); },那么访问swagger2地址时输入账号 密码,报错Encoded password does not look like BCrypt,请问是缺少什么代码导致的?
这个错误提示说明密码并没有被正确地使用BCryptPasswordEncoder进行加密。可能是在用户注册时没有使用PasswordEncoder对密码进行加密,或者在用户登录时没有对用户输入的密码进行正确的解密。你可以检查一下你的注册和登录接口的相关代码,确保密码在存储时被正确地加密,同时在登录时被正确地解密。另外,也可以确保你的密码加密方式是BCryptPasswordEncoder。
阅读全文