关于IDEA工具在springboot整合mybatis中出现的Invalid bound statement (not found)问题

第一次写博客。有点小激动。

笔者因为工作需要,所以需要学习springboot和springcloud,而开发工具则是公司要求使用的IDEA2017,笔者之前的开发工具是Myeclipse.

换了工具有诸多的不适应,还在慢慢的熟悉

在学习过程中难免有些磕磕碰碰,几天下来碰到了N个问题

一直有个想法,想把学习与工作过程中的错误与灵感都记录下来,却一直苦于没有什么时间而没去动笔

今天在学习springboot与mybatis整合中,使用了注解+xml的开发.

pom.xml引的几个重要依赖

               
			mysql
			mysql-connector-java
		
		
			org.mybatis.spring.boot
			mybatis-spring-boot-starter
			1.3.0
		
		
			junit
			junit
		
		
			org.springframework
			spring-test
			4.3.10.RELEASE
		
		
			org.springframework.boot
			spring-boot-test
			1.5.6.RELEASE
		

这是笔者的接口mapper

@Mapper
public interface UserMapper {
    List likeName(String name);
    User getById(Integer id);


}

这是xml文件




    
        
        
        
    
    

测试文件

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = DemoApplication.class)
public class MybatisTest {
    @Autowired
    private UserMapper userMapper;

    @Test
    public void getById() throws Exception {
        User user = userMapper.getById(1);
        System.out.println(user);

    }
}

在一切准备就绪之后,测试test,却出现了 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):

这个问题,通常情况下,这是xml文件与接口mapper不对应导致的.  但我仔细检查了一遍,没有发现错误.

在查阅过相关资料后发现,IDEA对xml文件处理的方式不同. mapper.xml文件需要放置在resource这个文件夹下.

而eclipse只要mapper接口文件与mapper.xml放置在同一平级目录就行


你可能感兴趣的:(开发问题)