zoukankan      html  css  js  c++  java
  • Spring 配置中的 ${}

    Spring 配置中的 ${}

        <!-- ============ GENERAL DEFINITIONS========== -->

    <!-- Configurer that replaces ${...} placeholders with values from a properties file -->

    <!-- (in this case, JDBC-related settings for the dataSource definition below) -->

    <bean id="propertyConfigurer"

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

    <property name="location">

    <value>classpath:spring/jdbc-oracle.properties</value>

    </property>

    </bean>

    <!-- =========== RESOURCE DEFINITIONS ============ -->

    <!-- Local DataSource that works in any environment -->

    <bean id="dataSource"

    class="org.springframework.jdbc.datasource.DriverManagerDataSource">

    <property name="driverClassName">

    <value>${jdbc.driverClassName}</value>

    </property>

    <property name="url">

    <value>${jdbc.url}</value>

    </property>

    <property name="username">

    <value>${jdbc.username}</value>

    </property>

    <property name="password">

    <value>${jdbc.password}</value>

    </property>

    </bean>

    当jdbc-oracle.properties文件加载下后,${}即可取出其中的内容

  • 相关阅读:
    gnuplot 让您的数据可视化
    sort
    sed
    AWK
    STA之RC Corner再论
    STA之RC Corner拾遗
    网络编程释疑之:TCP半开连接的处理
    Task 任务内部揭秘
    Task 线程任务
    【转】SQL Server、Oracle、MySQL和Vertica数据库常用函数对比
  • 原文地址:https://www.cnblogs.com/flying607/p/3486918.html
Copyright © 2011-2022 走看看