Bootstrap

SpringBoot+mybatis实现模糊查询数据的实例(通用)

网上的解决方式很多都不是通用的,刚学的弄这个可能会比较辛苦,自己弄了个大部分都能使用的放啊

 

首先我用的是xml文件、mapper映射数据库,(用注释也行,有时间更新在后面)通过控制器controller来传递数据给前端

 

userInfo.xml

<select id="queryByKeyWord" resultMap="BaseResultMap">//这个返回结果会返回List<>
    select * from user_info
    where
    u_id like CONCAT('%',#{uId,jdbcType=VARCHAR},'%')
</select>

 

UserInfoMapper.java

public interface UserInfoMapper {
    int deleteByPrimaryKey(Long id);

    int insert(UserInfo record);

    int insertSelective(UserInfo record);

    UserInfo selectByPrimaryKey(Long id);

    String selectByLogin(String userInfoId);

    int updateByPrimaryKeySelective(UserInfo userInfo);

    int updateByPrimaryKey(UserInfo userInfo);

    List<UserInfo> findAllUserInfo();

  
;