Use the starter provided by mybatis to integrate it with SpringBoot
<dependency>
<groupId></groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.1.1</version>
</dependency>
There is no problem starting the project in the IDE, but when starting the project as JAR, the following exception appears:
15:51:43.909 [main] DEBUG o.s.b.d.LoggingFailureAnalysisReporter - Application failed to start due to an exception
: No qualifying bean found for dependency [org.zbt.service.jxc.dao.base.DataDicMapper]: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.java:1463)
............
org.springframework.boot.starter.dubbo.startup.BootStrap.main(BootStrap.java:15)
2016-11-13 15:51:44.389 ERROR 3349 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter
From the exception, we can know that it is because the Mapper did not scan to SpringBoot.
The official configurable parameters are only a few:
config-location MyBatis xml config file (optional)
mapper-locations Mapper xml config files (optional)
type-aliases-package Package to search for type aliases (optional)
type-handlers-package Package to search for type aliases (optional)
executor-type Executor type: SIMPLE, REUSE, BATCH (optional)
configuration A MyBatis Configuration bean
It can be seen that the location of the Mapper interface cannot be specified.
This problem can be solved by adding the following configuration to the spring file that can be loaded by SpringBoot:
<bean class="" >
<property name="basePackage" value=""/>
<property name="annotationClass" value=""/>
</bean>