配置系列:ssm中applicationContext.xml的簡單配置

來源:互聯網
上載者:User

標籤:spring   配置   

<?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:p="http://www.springframework.org/schema/p"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">


<!--配置service的包掃描,自動注入Service-->

<context:component-scan base-package="com.simple"/>


<!-- 使用spring內建的預留位置替換功能 -->

<bean

class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

<!-- 允許JVM參數覆蓋 -->

<property name="systemPropertiesModeName"        value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />

<!-- 忽略沒有找到的資源檔 -->

<property name="ignoreResourceNotFound" value="true" />

<!-- 配置資源檔 -->

<property name="locations">

<list>

<value>classpath:jdbc.properties</value>

<value>classpath:env.properties</value>

</list>

</property>

</bean>


<!-- 資料庫連接池 -->

<bean id="dataSource" class="com.jolbox.bonecp.BoneCPDataSource"

destroy-method="close">

<!-- 資料庫驅動 -->

<property name="driverClass" value="${jdbc.driver}" />

<!-- 相應驅動的jdbcUrl -->

<property name="jdbcUrl" value="${jdbc.url}" />

<!-- 資料庫的使用者名稱 -->

<property name="username" value="${jdbc.username}" />

<!-- 資料庫的密碼 -->

<property name="password" value="${jdbc.password}" />

<!-- 檢查資料庫連接池中空閑串連的間隔時間,單位是分,預設值:240,如果要取消則設定為0 -->

<property name="idleConnectionTestPeriod" value="60" />

<!-- 串連池中未使用的連結最大存活時間,單位是分,預設值:60,如果要永遠存活設定為0 -->

<property name="idleMaxAge" value="30" />

<!-- 每個分區最大的串連數 -->

<property name="maxConnectionsPerPartition" value="150" />

<!-- 每個分區最小的串連數 -->

<property name="minConnectionsPerPartition" value="5" />

</bean>

</beans>


配置系列:ssm中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.