[Solved] Mybatis Plus 3.X injection logic delete logicsqlinjector error

Cannot resolve symbol ‘LogicSqlInjector’

    /**
     * <p> mybatis-plus sql </p>
     * <p> mybatis-plus </p>
     **/
    @Bean
    public ISqlInjector sqlInjector() {
        return new LogicSqlInjector();
    }

Reason: mybatis plus does not need to configure injection logic deletion, You do not need to write the above code

Read More: