系列文章:spring的xml配置是如何對應註解配置的之配置介紹

莫伊u發表於2020-07-31

從我們熟悉的web.xml開始…

1、web.xml:

  • 指定spring配置檔案bean.xml(預設applicationContext.xml)
  • 指定servlet配置檔案,預設[servletName]-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns="http://java.sun.com/xml/ns/javaee"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  version="3.0">

  <!-- 強制進行轉碼 -->
  <filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
  </filter>
  <filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
  </filter-mapping>

  <!-- 預設的spring配置檔案是在WEB-INF下的applicationContext.xml -->
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
      classpath:bean.xml
    </param-value>
  </context-param>

   <!--日誌配置檔案-->
  <context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>classpath:log4j.properties</param-value>
  </context-param>

  <!-- springMVC的核心控制器 -->
  <servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <!--不指定配置檔案位置,預設是servletName-servlet.xml-->
      <param-value>classpath:WEB-INF/spring-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springMVC</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

  <!-- session配置 -->
  <session-config>
    <session-timeout>30</session-timeout>
  </session-config>

  <!-- 歡迎頁面 ,物理頁面-->
  <welcome-file-list>
    <welcome-file>/WEB-INF/jsp/index.html</welcome-file>
  </welcome-file-list>

  <!-- 錯誤頁面 -->
  <!--<error-page>-->
    <!--<error-code>403</error-code>-->
    <!--<location>/WEB-INF/jsp/403.jsp</location>-->
  <!--</error-page>-->
  <!--<error-page>-->
    <!--<error-code>404</error-code>-->
    <!--<location>/WEB-INF/jsp/404.jsp</location>-->
  <!--</error-page>-->
  <!--<error-page>-->
    <!--<error-code>500</error-code>-->
    <!--<location>/WEB-INF/jsp/500.jsp</location>-->
  <!--</error-page>-->
  <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/WEB-INF/jsp/error.jsp</location>
  </error-page>
</web-app>

2、指定bean.xml,預設applicationContext.xml

<?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:context="http://www.springframework.org/schema/context" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans.xsd 
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd"> 
<!--開啟AOP-->
<aop:aspectj-autoproxy proxy-target-class="true"/>
<!-- <bean id="ConfigBean" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="locations">
      <list>
         <value>classpath:jdbc.properties</value>
      </list>
  </property>
</bean> -->
<!-- 或者下面這種方式載入jdbc.properties配置檔案 -->
<!-- <context:property-placeholder location="classpath:jdbc.properties"/> -->
<!-- 或者下面這種方式載入jdbc.properties配置檔案 -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:location="classpath:jdbc.properties"/>

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean" p:configLocation="classpath:hibernate.cfg.xml"/>
<!-- 或者下面這種方式 -->  
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
 <property name="configLocation">
      <value>classpath:hibernate.cfg.xml</value>
 </property>
 <property name="mappingDirectoryLocations">
      <list>
          <value>classpath*:/com/hbm</value>
      </list>
 </property>
</bean>

<!-- 配置hibernateTemplate Bean -->
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate4.HibernateTemplate" p:sessionFactory-ref="sessionFactory"/>

<!--事務管理配置-->
<tx:annotation-driven transaction-manager="transactionManager"/>
<!-- 使用hibernate事務管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager" p:sessionFactory-ref="sessionFactory" p:dataSource-ref="dataSource"> 
    <!-- 或者 -->
    <!-- <property name="sessionFactory" ref="sessionFactory"></property> --> 
    <!-- <property name="dataSource" ref="dataSource"></property> --> 
</bean>
<!-- 使用普通事務管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" /> 
</bean>
    
<!-- 配置事務傳播特性 -->
<tx:advice id="TransAdvice" transaction-manager="transactionManager"> 
    <tx:attributes> 
        <tx:method name="save*" propagation="REQUIRED" /> 
        <tx:method name="add*" propagation="REQUIRED" /> 
        <tx:method name="create*" propagation="REQUIRED" /> 
        <tx:method name="insert*" propagation="REQUIRED" /> 
        <tx:method name="update*" propagation="REQUIRED" /> 
        <tx:method name="merge*" propagation="REQUIRED" /> 
        <tx:method name="del*" propagation="REQUIRED" /> 
        <tx:method name="remove*" propagation="REQUIRED" /> 
        <tx:method name="put*" propagation="REQUIRED" /> 
        <tx:method name="use*" propagation="REQUIRED" /> 
        //hibernate4必須配置為開啟事務 否則 getCurrentSession()獲取不到 
        <tx:method name="get*" propagation="REQUIRED" read-only="true" /> 
        <tx:method name="count*" propagation="REQUIRED" read-only="true" /> 
        <tx:method name="find*" propagation="REQUIRED" read-only="true" /> 
        <tx:method name="list*" propagation="REQUIRED" read-only="true" /> 
        <tx:method name="*" propagation="REQUIRED" /> 
        <tx:method name="*" timeout="30" /> 
    </tx:attributes> 
</tx:advice> 
<!-- 配置參與事務的類 --> 
<aop:config> 
    <aop:pointcut id="allTransServiceMethod" expression="execution(* com.dao.*.*(..))" /> 
    <aop:advisor pointcut-ref="allTransServiceMethod" 
        advice-ref="TransAdvice" /> 
</aop:config>
<!--匯入DAO bean配置檔案--> 
<!-- <import resource="classpath:spring/*-spring.xml" /> -->
<!-- c3p0 -->
<context:property-placeholder location="classpath:c3p0_config.properties" />
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> 
     <!-- 指定連線資料庫的驅動--> 
     <property name="driverClass" value="${jdbc.driverClassName}"/> 
     <!-- 指定連線資料庫的URL--> 
     <property name="jdbcUrl" value="${jdbc.url}"/> 
     <!-- 指定連線資料庫的使用者名稱--> 
     <property name="user" value="${jdbc.username}"/> 
     <!-- 指定連線資料庫的密碼--> 
     <property name="password" value="${jdbc.password}"/> 
     <!-- 指定連線池中保留的最大連線數. Default:15--> 
     <property name="maxPoolSize" value="${jdbc.maxPoolSize}"/> 
     <!-- 指定連線池中保留的最小連線數--> 
     <property name="minPoolSize" value="${jdbc.minPoolSize}"/> 
     <!-- 指定連線池的初始化連線數  取值應在minPoolSize 與 maxPoolSize 之間.Default:3--> 
     <property name="initialPoolSize" value="${jdbc.initialPoolSize}"/> 
     <!-- 最大空閒時間,60秒內未使用則連線被丟棄。若為0則永不丟棄。 Default:0--> 
     <property name="maxIdleTime" value="${jdbc.maxIdleTime}"/> 
     <!-- 當連線池中的連線耗盡的時候c3p0一次同時獲取的連線數. Default:3--> 
     <property name="acquireIncrement" value="${jdbc.acquireIncrement}"/> 
     <!-- JDBC的標準,用以控制資料來源內載入的PreparedStatements數量。 
       但由於預快取的statements屬於單個connection而不是整個連線池所以設定這個引數需要考慮到多方面的因數.
       如果maxStatements與maxStatementsPerConnection均為0,則快取被關閉。Default:0 --> 
     <property name="maxStatements" value="${jdbc.maxStatements}"/> 
     <!-- 每60秒檢查所有連線池中的空閒連線.Default:0 --> 
     <property name="idleConnectionTestPeriod" value="${jdbc.idleConnectionTestPeriod}"/> 
     <!--定義在從資料庫獲取新連線失敗後重復嘗試的次數。Default: 30 -->
      <property name="acquireRetryAttempts" value="30" />
      <!--當連線池中的連線耗盡的時候c3p0一次同時獲取的連線數。Default: 3 -->
      <!-- <property name="acquireIncrement" value="3" /> -->
      <property name="breakAfterAcquireFailure" value="true" />
      <property name="testConnectionOnCheckout" value="false" />
</bean>
</beans>

3、如果不指定spring mvc配置檔案位置,預設使用WEB-INF/spring-servlet.xml

<?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:context="http://www.springframework.org/schema/context" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd"> 
 <beans>
    <!-- spring mvc 配置-->
    <mvc:annotation-driven/>
    <!-- 掃描類包以啟動註解驅動的Bean -->
    <context:component-scan base-package="com.dao"></context:component-scan>
 </beans> 

4、hibernate.cfg.xml

<!-- 連線池hibernate配置c3p0資料來源,需要再次配置資料來源,c3p0才起作用 -->
<property name="hibernate.connection.provider_class">
   org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider    
</property>
<!-- 最小連線數 -->
<property name="c3p0.min_size">5</property>
<!-- 最大連線數 -->
<property name="c3p0.max_size">20</property>
<!-- 獲得連線的超時時間,如果超過這個時間,會丟擲異常,單位秒 -->
<property name="c3p0.timeout">120</property>
<!-- 最大的PreparedStatement的數量 -->
<property name="c3p0.max_statements">50</property>
<property name="c3p0.automaicTestTable">Test</property>
<!-- 每隔120秒檢查連線池裡的空閒連線 ,單位是秒 -->
<property name="c3p0.idle_test_period">120</property>
<!-- 當連線池裡面的連線用完的時候,C3P0一下獲取的新的連線數 -->
<property name="c3p0.acquire_increment">1</property>
<property name="c3p0.testConnectionOnCheckout">true</property>
<!-- 每隔120秒檢查連線池裡的空閒連線 ,單位是秒-->
<property name="c3p0.idleConnectionTestPeriod">18000</property>
<property name="c3p0.maxIdleTime">25000</property>
<property name="c3p0.idle_test_period">120</property>
<!-- 每次都驗證連線是否可用 -->
<property name="c3p0.validate">true</property>
<property name="preferredTestQuery">select * from db_test</property>

相關文章