慕田峪2387399
2017-07-07 14:44
用@ImportResource("classpath:jdbc.properties") ,我导入properties文件不行,而且还必须是有格式的XML
@PropertySource注解 我就是用这个注解 为什么无法引入 输出uri==>${url}
user==>${user}
name==>${pass}
@ImportResource导入的是xml配置文件。properties需要在xml文件中配置,配置方法如下:
<context:property-placeholder location=prpperties位置/>。
如果想直接引入properties文件则用@PropertySource注解,省去了配置xml的麻烦。
Spring入门篇
268785 学习 · 963 问题
相似问题