spring spring注解驱动开发7-属性注入
5.1 @Value 能够应用字符串/SpEL/${}表达式 5.2 @PropertySource 指定配置文件, 相当于之前的 {代码…} 实例:bean @Value(“张三”): 常量字符串; @Value(“#{20+3}”): spEL表达式; @Value(“#{${ds.age1}+${ds.age2}}”): spEL表达式; @Value(“${ds.passwd}”): 读取配置文件; {代码…} 配置类: 留神 @PropertySource 是在…
40次阅读
spring 2020-07-15