1. 程式人生 > >Request processing failed 問題與解決

Request processing failed 問題與解決

HTTP Status 500 - Request processing failed; nested exception is java.lang.RuntimeException: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.XXXXX.mapper.TbBrandMapper.selectByExample

原因是dao的mapper中的xml檔案沒有被編譯

解決辦法:

在dao的pom.xml檔案中加上以下程式碼

      <build>
          <resources>
              <!--拷貝xml檔案到classpath下-->
              <resource>
                  <directory>src/main/java</directory>
                  <includes>
                      <include>**/*.properties</include>
                      <include>**/*.xml</include>
                  </includes>
                  <filtering>false</filtering>
              </resource>
          </resources>
      </build>