首頁 > 軟體

SpringBoot找不到對映檔案的處理方式

2022-10-04 14:00:20

SpringBoot找不到對映檔案

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.qf.mapper.UserM

如果xml檔案設定都確認無誤還不能解決的話,可以嘗試在pom.xml檔案中進行如下設定:

<build>
  <resources>
    <resource>
        <directory>src/main/java</directory>
        <includes>
            <include>**/*.xml</include>
        </includes>
    </resource>
  </resources>
</build>

後面我發現在yml檔案裡面,下面第一種寫法不行,第二種又可以。。。

mapper-locations: com/tt/mapper/*.xml
mapper-locations: com.tt.mapper/*.xml

SpringBoot對映本地檔案到URL路徑

有兩種方法,使用設定類,或者在組態檔yml中設定

1、使用設定類

需要一個設定類,實現了WebMvcConfigurer介面

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration // 1.新增組態檔註解
public class Config implements WebMvcConfigurer { // 2.實現WebMvcConfigurer介面
//    @Value("${img.path}")
    private String locationPath = "F:\img\"; // 3.檔案本地路徑
    private static final String netPath = "/img/**"; // 對映路徑
    // 目前發現如果本地路徑不是以分隔符結尾,在存取時否需要把在最後一個資料夾名新增在對映路徑後面
    // 如:
    // locationPath-->F:img       存取路徑-->ip:port/img/1.png
    // locationPath-->F:img           存取路徑-->ip:port/img/img/1.png
    // locationPath-->F:img123     存取路徑-->ip:port/img/1.png
    // locationPath-->F:img123      存取路徑-->ip:port/img/123/1.png
    
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        // 目前在本地Win系統測試需要在本地路徑前新增 "file:"
        // 有待確認Linux系統是否需要新增(已確認)
        // Linux系統也可以新增 "file:"
        registry.addResourceHandler(netPath).addResourceLocations("file:"+locationPath);
    }
}

2、在組態檔yml中設定

該方法沒有使用設定類的方法中,因本地路徑不是以分隔符結尾而造成的存取問題

# 檔案本地路徑
img:
  #  path: /root/RandomImg/images/     #Linux
  path: F:img      #Win
# 對映路徑
spring:
  resources:     #存取系統外部資源,將該目錄下的檔案對映到系統下
    static-locations: classpath:/static/, file:${img.path} #本地檔案,多個路徑用英文逗號隔開
  mvc:
    static-path-pattern: /img/** # 存取路徑

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com