org.apache.ibatis.type.TypeException: псевдоним «Критерий» уже сопоставлен со значением «com.xxx.domain.def.GameListExample $ Criterion» - PullRequest
0 голосов
/ 29 апреля 2019

Я использую генератор mybatis для генерации домена и картографа.Это хорошо работает, когда я генерирую одну таблицу.

Когда я генерирую другую таблицу, возникает проблема.Кажется, что класс Criterion в конфликтах GameListExample и BetRecdExample создан, но был сгенерирован mybatis.

Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'betRecdMapper' defined in file 
[F:\IdeaProjects\game\target\classes\com\good\game\dao\def\BetRecdMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource 
[org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: 
Factory method 'sqlSessionFactory' threw exception; nested exception is org.apache.ibatis.type.TypeException: The alias 'Criterion' is already mapped to the value 'com.good.game.domain.def.GameListExample$Criterion'.

1 Ответ

0 голосов
/ 29 апреля 2019

Звучит так же, как и https://github.com/mybatis/generator/issues/461

Это вызвано ошибкой в ​​mybatis-spring 2.0.1.
https://github.com/mybatis/spring/issues/362
Текущее решение заключается в использовании mybatis-spring 2.0.0 или 2.0.2-SNAPSHOT.

...