0
にプロパティファイルから値を取得取得する方法: - プロパティファイルの名前はapplication.propertiesで、値は以下の通りです: -私は以下の通りですプロパティファイルの値を取得したい春
をconfig.name=abcd
config.pwd=efgh
それが値を取得します私のコードは以下の通りです: -
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
@PropertySource("classpath:application.properties")
public class CustomerService {
@Value("${config.name}")
private String name;
@Value("$(config.pwd)")
private String data;
System.out.println("name is ::" +name);
System.out.println("data is ::" +data);
}
しかし、コードは出力が
として来て戻っていますname is ::ankita
data is ::$(config.pwd)
誰でもこの問題を解決するのに役立つことができますか?