首頁 > 軟體

Spring載入屬性檔案方式(自動載入優先順序問題)

2022-02-14 13:00:45

Spring載入屬性檔案

方式1、用xml檔案設定

正常情況下,spring整合mybatis的組態檔的dataSource部分如下

 <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/ssm"></property>
        <property name="username" value="root"></property>
        <property name="password" value="123456"></property>
    </bean>

可以將資料庫的連結資訊寫到屬性檔案中,如下。

jdbc.url=jdbc:mysql://localhost:3306/ssm
jdbc.driver=com.mysql.jdbc.Driver
jdbc.username=root
jdbc.password=123456

在spring組態檔中,就可以用${}的形式獲取屬性資訊,但需要加入 <context:property-placeholder />標籤設定屬性檔案的路徑。即

 <context:property-placeholder location="classpath:db.properties"/>    
 <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
     <property name="driverClassName" value="${jdbc.driver}"></property>      
    <property name="url" value="${jdbc.url}"></property>
    <property name="username" value="${jdbc.username}"></property>
    <property name="password" value="${jdbc.password}"/>
 </bean>

但是由此會引發另一個問題,自動載入的優先順序特別高(就是先範例化)

若org.mybatis.spring.SqlSessionFactoryBean的id為sqlSessionFactory,當自動注入時,org.mybatis.spring.mapper.MapperScannerConfigurer類下的SqlSessionFactory屬性會自動注入,然後org.mybatis.spring.SqlSessionFactoryBean也會範例化,而org.mybatis.spring.SqlSessionFactoryBean中含有dateSourse,所以org.springframework.jdbc.datasource.DriverManagerDataSource也會範例化,但是這時屬性檔案還沒有載入,造成程式出錯Error setting property values,總而言之就是在屬性檔案載入之前,類範例化了,結果得不到屬性檔案中的值。

解決辦法

第1步,更改org.mybatis.spring.SqlSessionFactoryBean的id名稱,例如factory

第2步,將org.mybatis.spring.mapper.MapperScannerConfigurer中加入<property name="sqlSessionFactoryBeanName" value="factory"></property>,如果用<property name="sqlSessionFactory/>標籤同樣出現以上的問題。

因為自動注入隻影響ref的,而sqlSessionFactoryBeanName的值的型別時string,用value賦值,所以不受影響

以下是完整的spring整合mybatis的組態檔

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd" 
        default-autowire="byName">
        
      <context:property-placeholder location="classpath:db.properties"/>        
        <!-- 資料來源封裝類,資料來源:獲取資料庫連線,spring-jdbc.jar中 -->
      <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
          <property name="driverClassName" value="${jdbc.driver}"></property>      
         <property name="url" value="${jdbc.url}"></property>
         <property name="username" value="${jdbc.username}"></property>
         <property name="password" value="${jdbc.password}"/>
      </bean>
        <!-- 建立SqlSessionFactory物件 -->
      <bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
          <!-- 資料庫連線資訊來源於dataSource -->
          <!-- <property name="dataSource" ref="dataSource"></property> -->
          <!-- 相當於mybatis中別名預設包 -->
          <property name="typeAliasesPackage" value="com.lee.pojo"></property>
      </bean>
      <!-- 掃描器相當於mybatis設定介面繫結時xml的mappers下的package標籤 -->
      <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
          <!-- 掃描哪個包 -->
          <property name="basePackage" value="com.lee.mapper"></property>
          <!-- 和factory產生關係 -->       
      <property name="sqlSessionFactoryBeanName" value="factory"></property>
      </bean>     
</beans>

方式2、用註解

使用註解方法時,需要新增標籤,這裡的包名指的是含有註解的類所在包

<context:component-scan base-package="com.lee.service.impl"></context:component-scan>

測試的properties

my.value=hello

測試類

public class Demo{
    @Value("${my.value}")
    private String test;    
}

這樣就可以範例化Demo時給test注入值 

對Spring載入順序的理解

web.xml初始化

  • Web專案啟動的時候,容器(如:tomcat)讀取webapp/WEB-INF/web.xml檔案,讀取和;
  • 建立ServletContex,Web專案所有部分都可以使用該上下文ServletContex;
  • 容器將解析為key-value對,並交給ServletContext;
  • 容器根據中的類建立監聽範例,即啟動監聽;
  • listener監聽類中會contextInitialized(ServletContextEvent servletContextEvent)初始化方法,可通過ServletContextEvent.getServletContext().getInitParameter(“field”)獲得value的值;
  • 解析,並啟動攔截器 攔截器開始起作用,當有請求進入時,執行Filter的doFilter方法;
  • 最後載入和初始化設定在load on startup的servlets;
  • 載入Spring,如果filter需要用到bean,但載入順序是: 先載入filter 後載入spring,則filter中初始化操作中的bean為null.如果過濾器中要使用到 bean,可以將spring 的載入 改成Listener的方式:org.springframework.web.context.ContextLoaderListener

先建立上下文物件servletcontext,再載入監聽器,然後去載入攔截器,最後載入servlet

路徑問題:Spring MVC靜態資源攔截(No mapping found for HTTP request with URI in DispatcherServlet with name ’ ')問題

/ 是載入檢視設定的目錄下的檔案,前提是webapp下沒有預設檔案;如果有檔案就存取預設檔案

/* 我的測試是都報404

spring載入流程

啟動先載入web.xml(包含:載入applicationContext.xml、listener:contextloadlistener、:DispatcherServlet),通過applicationContext.xml載入介面及java實現類、載入config.properties檔案、載入資料庫驅動等、載入mybatis.config檔案(SqlSessionFactoryBean:載入xml檔案)、載入資料庫的介面和mapper.xml、載入springmvc檢視等。

要保證install後mapper.java、mapper.xml要在同一檔案下

如果用EL表示式(ModelAndView)時表示式出現問題解決如下:(搜尋:SpringMVC中JSP頁面不顯示EL表示式的原因)

提高web.xml最上面dtd的版本

在jsp頁面新增<%@ page isELIgnored=“false” %> ,新增head裡就行

名稱空間

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


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