zoukankan      html  css  js  c++  java
  • 在Spring中读取properties文件

    1、配置文件(*.properties)往往通过以下方式注册在Spring IOC中。

        <!-- JDBC配置 -->
        <context:property-placeholder location="classpath:mybatis/db.properties"
            ignore-unresolvable="true" />
    
        <!-- 微信公众号信息 -->
        <context:property-placeholder
            location="classpath:wechat/official-account.properties"
            ignore-unresolvable="true" />
    
        <!-- 触发器表达式 -->
        <context:property-placeholder
            location="classpath:wechat/cron-expression.properties"
            ignore-unresolvable="true" />
    
        <!-- 其他配置(分页尺寸、访问频率等) -->
        <context:property-placeholder
            location="classpath:wechat/other.properties"
            ignore-unresolvable="true" />

    2、在控制层或业务层的类中,通过@Value注解引入其中的某个属性。

    /src/main/resources/mybatis/db.properties

    # db.properties
    jdbc.driver=com.mysql.jdbc.Driver
    jdbc.url=jdbc:mysql://localhost:3306/demo?characterEncoding=UTF-8&useUnicode=true&useSSL=false&allowMultiQueries=true
    jdbc.username=root
    jdbc.password=root

    io.spldeolin.demo.controller.OneController

    @Controller
    public class DepartmentController {
    
        @Value("${jdbc.password}")
        private String a;
    
        // Others ignore
    
    }

    3.DEBUG

  • 相关阅读:
    groovy-搭建环境
    isAssignableFrom
    H5调用摄像头
    php生成唯一id
    剑指Offer刷题日常
    ASCII码对照表
    用redis stream作队列的一些心得
    在 CAP 中使用 AOP ( Castle.DynamicProxy )
    office2019下载
    JVM调优浅谈
  • 原文地址:https://www.cnblogs.com/deolin/p/7670360.html
Copyright © 2011-2022 走看看