Idea inspects batis mapper bean wrong

Fergus MacDubh picture Fergus MacDubh · Aug 19, 2014 · Viewed 11k times · Source

There's web project with Spring and MyBatis. I use IntelliJ IDEA for development. IDEA cannot correctly inspect MyBatis beans and produces annoying underscorings, though link to Data Access Object is present.

Inspection comment:

 Could not autowire. No beans of 'ApplicationMapper' type found.

My Spring and MyBatis configurations: Spring:

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="configLocation" value="classpath:spring/mybatis-config.xml"/>

</bean>

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="com.db.gbs.gbsapps.rds.backend.model.integration.mapping"/>
</bean>

mybatis-config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">

<configuration>
    <mappers>
        <mapper resource="mybatis/ApplicationMapper.xml"/>
    </mappers>
</configuration>

Is there a way to fix this small issue?

Answer

Enrique Jim&#233;nez Flores picture Enrique Jiménez Flores · Dec 22, 2016
@Repository
@Mapper 
public interface ApplicationMapper {

will do the trick