学习SSM遇到的问题

1. Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

  原因 : xml文件没有被加载到类路径下

  解决 : 在pom.xml下添加

    </build>
      <resources>
        <resource>
          <directory>src/main/java</directory><!--所在的目录-->
          <includes><!--包括目录下的.properties,.xml文件都会扫描到-->
            <include>**/*.properties</include>
            <include>**/*.xml</include>
          </includes>
          <filtering>false</filtering>
        </resource>
      </resources>
    </build>

上一篇:ElasticSearch(ES)使用Nested结构存储KV及聚合查询


下一篇:java – RobotFramework中的嵌套循环