flowable集成mybatis 遇到的问题

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

@ComponentScan(basePackages = {
        "org.flowable.ui.modeler.repository",
        "org.flowable.ui.modeler.service",
        "org.flowable.ui.common.repository",
        "org.flowable.ui.common.tenant",

        "org.flowable.ui.modeler.rest.app",
        "org.flowable.ui.modeler.rest.api"
    }, excludeFilters = {
        @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = DatabaseConfiguration.class)}
)

加入  @ComponentScan.Filter

解决

你可能感兴趣的:(flowable)