springboot + security +mybatis注解方式

本文详细介绍了使用SpringBoot、Security和Mybatis进行注解方式的集成和配置过程,包括目录结构、用户实体类创建、数据库操作、服务类与UserDetails接口实现、Spring Security的设置以及控制器和配置文件的详细配置。特别强调了Spring Security 5.0中密码编码处理的重要性。
摘要由CSDN通过智能技术生成

一,目录结构

目录结构

二,创建用户实体类

与数据库内容对应

package com.example.springbootsecurityonetable.model;

import lombok.Data;

/**
 * @Author: xc
 * @Date: 2018/11/18 17:03
 * @Description:
 **/
@Data
public class MyUser {
   
    private String id;
    private String username;
    private String password;
    private String roles;
}

三,UserMapper操作数据库

package com.example.springbootsecurityonetable.mapper;

import com.example.springbootsecurityonetable.model.MyUser;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;

@Repository
@Mapper
public interface UserMapper {
   
    @Insert("insert into user(username, password, roles) values(#{username}, #{password}, #{roles})")
    boolean insert(MyUser user);
    @Select("SELECT * FROM user WHERE username=#{name}")
    MyUser findByUserName(String name);
}

四,服务类

  1. 接口
    package com.example.springbootsecurityonetable.service;
    import com.example.springbootsecurityonetable.model.MyUser;
    /**
     * @Author: xc
     * @Date: 2018/11/18 17:12
     * @Description:
     **/
    public interface UserService {
         
        boolean insert(MyUser user);
        MyUser findByUserName(String name);
    }	
    
  2. 实现类
package com.example.springbootsecurityonetable.service.Impl;

import com.example.springbootsecurityonetable.mapper.UserMapper;
import com.example.springbootsecurityonetable.model.MyUser;
import com.example.springbootsecurityonetable.role.Role;
import com.example.springbootsecurityonetable.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * @Author: xc
 * @Date: 2018/11/18 17:15
 * @Description:
 **/
@Service
public class UserServiceImpl implements UserService 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值