Vhr项目技术学习知识点总结

该博客介绍了如何创建SpringBoot项目并配置.properties文件。通过@MapperScan注解扫描Mapper实体类,@ComponentScan指定启动类位置。配置@Configuration类注入SpringBoot。在项目中遇到依赖冲突,进行了依赖管理和版本调整。利用MyBatis生成Model和Mapper接口,并实现了Security安全框架的UserDetailsService,以加载用户信息。最后展示了SecurityConfig配置和测试接口。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.创建springboot项目,配置。properties配置文件,

 2. 配置@MapperScan(basePackages = "com.liuboss.vhr.mapper") 注解,使springboot可以扫描到mapper实体类。

3.@ComponentScan("com.jiawa")  为springboot启动类的扫描注解,用于更换启动类位置。

4.   /*配置类*/ @Configuration, 将配置类注入进springboot

5.springboot项目报错不一定鼎时代吗错误,依赖假的过多,版本冲突。删除多余依赖,修改版本。

6.代码实现-自动生成model和mapper接口

实现集成Security安全框架。

@Service
public class HrService implements UserDetailsService {
    @Autowired
    HrMapper hrMapper;
    @Override
    public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
        Hr hr = hrMapper.loadUserByUsername(username);
        if (hr==null){
            throw new UsernameNotFoundException("用户不存在!");
        }
        return hr;
    }
}

集成配置类

/*配置类*/
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Autowired
    HrService hrService;

    @Bean
    PasswordEncoder passwordEncoder(){
        return new BCryptPasswordEncoder();
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.userDetailsService(hrService);
    }
}

测试接口进行测试

@RestController
public class Hello {
    @GetMapping("/hello")
    public String hello(){
        return "hello";
    }
}

输入密码登陆成功

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值