mybatis-plus实现非法sql拦截(防止全表更新与删除)

防止非法SQL全表更新与删除:MybatisPlus拦截器使用
文章介绍了非法SQL,特别是不带where子句的delete和update操作的风险。接着阐述了拦截这些操作的重要性,旨在阻止可能的恶意行为。通过在项目中添加MybatisPlus的相关依赖,配置MybatisPlusInterceptor并启用BlockAttackInnerInterceptor拦截器,可以实现对全表更新和删除的防护。在测试案例中,尝试进行全表更新操作时,系统抛出了禁止该操作的异常,证明拦截功能生效。

什么是非法sql:

不带where子句的delete和update,在生产环境中是不允许的。因为不带where子句的delete和update将会影响全表数据。这是非常可怕的!!

拦截的意义是:

就是阻止恶意的全表更新或删除

使用:

如果项目中还没添加mybatis-plus依赖:

		<dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.1.0</version>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
            <version>3.1.0</version>
        </dependency>

1、在pom文件中添加依赖

<!--  MP防全表更新与删除插件      -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-extension</artifactId>
            <version>3.5.1</version>
        </dependency>

2、注入MybatisPlusInterceptor类,并配置BlockAttackInnerInterceptor拦截器

@Configuration
public class MybatisPlusConfig {
  @Bean
  public MybatisPlusInterceptor mybatisPlusInterceptor() {
    MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
    interceptor.addInnerInterceptor(new BlockAttackInnerInterceptor());
    return interceptor;
  }
}

测试:

数据库t_user表
在这里插入图片描述
实体类:

@TableName("t_user")
@Data
public class UserPO implements Serializable {

    @TableId(type = IdType.ASSIGN_ID)
    private Long id;

    private String userName;

    private String password;

    private String nickName;

    private int delFlag;


}

UserPOMapper:

@Mapper
public interface UserPOMapper extends BaseMapper<UserPO> {
}

IUserService:

public interface IUserService extends IService<UserPO> {
}

IUserServiceImpl:

@Service
public class IUserServiceImpl extends ServiceImpl<UserPOMapper, UserPO> implements IUserService {

}

Test:


	@Autowired
    private IUserService iUserService;
    
    @Test
    public void extension(){
        UserPO userPO = new UserPO();
        userPO.setUserName("yuan5");
        userPO.setPassword("123456");
        userPO.setNickName("bruce5");

        /**
         + SQL:UPDATE user  SET user_name=?,password=?,nick_name=?;
         */
        boolean b = iUserService.saveOrUpdate(userPO, null);
        System.out.println(b);
    }

**执行上面的测试方法,将抛出如下错误信息: **

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error updating database.  Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Prohibition of table update operation
### The error may exist in com/example/demo/mapper/UserPOMapper.java (best guess)
### The error may involve com.example.demo.mapper.UserPOMapper.update
### The error occurred while executing an update
### Cause: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Prohibition of table update operation

上面的错误信息中,“Prohibition of table update operation” 禁止全表更新操作,这样就能阻止全表更新和删除操作。

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值