在Spring中读取properties文件

Posted Deolin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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

 

以上是关于在Spring中读取properties文件的主要内容,如果未能解决你的问题,请参考以下文章

springboot配置文件application-dev.properties,application-prod.properties,application-test.properties(代码片

如何在spring中读取properties配置文件里面的信息

关于Spring读取properties配置文件的一个问题

Spring中属性文件properties的读取与使用

使用spring最简单地读取properties文件中的内容

在Spring中读取properties文件