1、使用xml配置文件开发
a、开启context命名空间
b、使用context空间加载properties文件,使用<context:property-placeholder location='classpath:*.properties'>标签配置
c、使用属性占位符${}读取properties文件中的属性
2、使用注解开发
在配置类中使用@PropertySource(classpath:properties文件)
1、使用xml配置文件开发
a、开启context命名空间
b、使用context空间加载properties文件,使用<context:property-placeholder location='classpath:*.properties'>标签配置
c、使用属性占位符${}读取properties文件中的属性
2、使用注解开发
在配置类中使用@PropertySource(classpath:properties文件)