idea运行springboot项目所能遇见的问题总结

1、IDEA 导入的spring boot项目 不能启动, XxxApplication也没图标显示

idea运行springboot项目所能遇见的问题总结_第1张图片

 

右击项目中的pom.xml 选择 Add Maven即可

2、Springboot+thymeleaf+mybatis 抛Error resolving template [xxx], template might not exist的异常

原因是我们在pom.xml增加的以下内容导致的,以下内容中src/main/resources这项中没有把你的html文件包括进去,懒一点的做法(**/*.*


    
        ${project.build.directory}/classes
        src/main/resources
        true
        
            **/*.yml
            **/*.xml
        
    
    
        ${project.build.directory}/classes
        src/main/java
        
            **/*.*
            **/*.xml
        
    
还有增加整段内容的目的是为了解决另一个问题,扫描不到mybatis的mapper.xml文件(在调用Mapper层方法时报错:Invalid bound statement (not found)),增加在最后面的之间

3、Invalid bound statement (not found): com.example.demo.mapper.TUserMapper.findAll

原因所在:

idea运行springboot项目所能遇见的问题总结_第2张图片

 

 

 

你可能感兴趣的:(SpringBoot)