spring applicationContext.xml 設定檔 詳解

來源:互聯網
上載者:User

標籤:idle   pool   ict   iba   oca   use   方法   沒有   sts   

applicationContext.xml 檔案
<?xml version="1.0" encoding="UTF-8"?>  <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"      xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" xmlns:util="http://www.springframework.org/schema/util" xmlns:jdbc="http://www.springframework.org/schema/jdbc"      xmlns:cache="http://www.springframework.org/schema/cache"      xsi:schemaLocation="      http://www.springframework.org/schema/context      http://www.springframework.org/schema/context/spring-context.xsd      http://www.springframework.org/schema/beans      http://www.springframework.org/schema/beans/spring-beans.xsd      http://www.springframework.org/schema/tx      http://www.springframework.org/schema/tx/spring-tx.xsd      http://www.springframework.org/schema/jdbc      http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd      http://www.springframework.org/schema/cache      http://www.springframework.org/schema/cache/spring-cache-3.1.xsd      http://www.springframework.org/schema/aop      http://www.springframework.org/schema/aop/spring-aop.xsd      http://www.springframework.org/schema/util      http://www.springframework.org/schema/util/spring-util.xsd">        <!-- 自動掃描web包 ,將帶有註解的類 納入spring容器管理 -->      <context:component-scan base-package="com.eduoinfo.finances.bank.web"></context:component-scan>        <!-- 引入jdbc設定檔 -->      <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">          <property name="locations">              <list>                  <value>classpath*:jdbc.properties</value>              </list>          </property>      </bean>        <!-- dataSource 配置 -->      <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">          <!-- 基本屬性 url、user、password -->          <property name="url" value="${jdbc.url}" />          <property name="username" value="${jdbc.username}" />          <property name="password" value="${jdbc.password}" />            <!-- 配置初始化大小、最小、最大 -->          <property name="initialSize" value="1" />          <property name="minIdle" value="1" />          <property name="maxActive" value="20" />            <!-- 配置擷取串連等待逾時的時間 -->          <property name="maxWait" value="60000" />            <!-- 配置間隔多久才進行一次檢測,檢測需要關閉的空閑串連,單位是毫秒 -->          <property name="timeBetweenEvictionRunsMillis" value="60000" />            <!-- 配置一個串連在池中最小生存的時間,單位是毫秒 -->          <property name="minEvictableIdleTimeMillis" value="300000" />            <property name="validationQuery" value="SELECT ‘x‘" />          <property name="testWhileIdle" value="true" />          <property name="testOnBorrow" value="false" />          <property name="testOnReturn" value="false" />            <!-- 開啟PSCache,並且指定每個串連上PSCache的大小 -->          <property name="poolPreparedStatements" value="false" />          <property name="maxPoolPreparedStatementPerConnectionSize" value="20" />            <!-- 配置監控統計攔截的filters -->          <property name="filters" value="stat" />      </bean>        <!-- mybatis檔案配置,掃描所有mapper檔案 -->      <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean" p:dataSource-ref="dataSource" p:configLocation="classpath:mybatis-config.xml" p:mapperLocations="classpath:com/eduoinfo/finances/bank/web/dao/*.xml" />        <!-- spring與mybatis整合配置,掃描所有dao -->      <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer" p:basePackage="com.eduoinfo.finances.bank.web.dao" p:sqlSessionFactoryBeanName="sqlSessionFactory" />        <!-- 對dataSource 資料來源進行交易管理 -->      <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" p:dataSource-ref="dataSource" />        <!-- 配置使Spring採用CGLIB代理 -->      <aop:aspectj-autoproxy proxy-target-class="true" />        <!-- 啟用對事務註解的支援 -->      <tx:annotation-driven transaction-manager="transactionManager" />        <!-- Cache配置 -->      <cache:annotation-driven cache-manager="cacheManager" />      <bean id="ehCacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:configLocation="classpath:ehcache.xml" />      <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager" p:cacheManager-ref="ehCacheManagerFactory" />    </beans>  
1、<context:component-scan base-package="com.eduoinfo.finances.bank.web"></context:component-scan> 作用Spring 容器初始化的時候,會掃描 com.eduoinfo.finances.bank.web下 標有 (@Component,@Service,@Controller,@Repository) 註解的 類 納入spring容器管理

在類上 ,使用以下註解,實現bean 的聲明

@Component 泛指組件,當組件不好歸類的時候,我們可以使用這個註解進行標註。

@Service 用於標註業務層組件

@Controller 用於標註控制層組件(如srping mvc的controller,struts中的action)

@Repository 用於標註資料訪問組件,即DAO組件

樣本:

@Controller
@RequestMapping(value = "/test")
public class TestController {

}

------------------------------------------------------------------------------------------------------------------

在類的成員變數上,使用以下註解,實現屬性的自動裝配

@Autowired : 按類 的 類型進行裝配

@Resource (推薦) : 1 如果同時指定了name和type,則從spring上下文中找到唯一匹配的bean進行裝配,找不到則拋出異常

    2. 如果指定了name,則從上下文中尋找名稱(id)匹配的bean進行裝配,找不到則拋出異常 

    3.如果指定了type,則從上下文中找到類型匹配的唯一bean進行裝配,找不到或者找到多個,都會拋出異常 

    4.如果既沒有指定name,又沒有指定type,則自動按照byName方式進行裝配;如果沒有匹配,則回退為一個原始類型進行匹配,如果匹配則自動裝配;

@Resource註解在欄位上,這樣就不用寫setter方法了,並且這個註解是屬於J2EE的,減少了與spring的耦合。 

樣本:

@Resource
private TestServiceImpl testServiceImpl;

spring applicationContext.xml 設定檔 詳解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.