起動時に以下のエラーが発生
java.lang.IllegalArgumentException: Invalid value type for attribute 'factoryBeanObjectType': java.lang.String
原因
たぶん、Mybatisのバージョンが環境に合わないのが原因
(バグなのか?)
対処
バージョンを変えてみる
エラーになったバージョン.
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>3.0.2</version>
</dependency>
解決したバージョン.
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>3.0.3</version>
</dependency>
お試しあれ