SpringBoot找不到映射文件的處理方式
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:\img\123\ 訪問路徑-->ip:port/img/1.png // locationPath-->F:\img\123 訪問路徑-->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/** # 訪問路徑
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- SpringBoot重寫addResourceHandlers映射文件路徑方式
- springboot文件虛擬路徑映射方式
- Springboot設置默認訪問路徑方法實現
- 解決springboot 2.x 裡面訪問靜態資源的坑
- 關於springboot2.4跨域配置問題