读取配置可通过 org.springframework.core.env.Environment 类来获取, 也可以通过@Value的方式来获取
注解形式:
@PropertySource({"classpath:application.properties"})
配置文件形式:
<context:property-placeholder location="classpath:jdbc.properties" file-encoding="utf-8" ignore-unresolvable="true" />
时间: 2024-10-04 11:41:12