Spring从外部文件db.properties配置c3p0,$ {user}出来的值不正确,拿出我的电脑用户名。
如果user1=root
public class Value {
private String value;
public void setValue(String value) {
this.value = value;
}
public void say() {
System.out.println(value);
}
}
<bean id="value" class="cc.bluecode.beans.Value">
<property name="value" value="${user1}"></property>
</bean>
The output is correct ✔️ :root
但是,如果
user=root
public class Value {
private String value;
public void setValue(String value) {
this.value = value;
}
public void say() {
System.out.println(value);
}
}
<bean id="value" class="cc.bluecode.beans.Value">
<property name="value" value="${user}"></property>
</bean>
请告诉我为什么上帝告诉我,谢谢你!