在我的代码中,我使用外部属性文件。如果我运行此代码,它将起作用。春天将给我带来梅诺(priezvisko)的特色。
我的问题是。为什么有效?
在一些教程中,我发现我需要@Configuration
@PropertySource("classpath:jarko.properties")
public class JarkoConfig {
@Value("${jarko.meno}")
String meno;
@Value("${jarko.priezvisko}")
String priezvisko;
@Bean
public PrintService printService(){
PrintService printService = new PrintService();
printService.setData(meno + ", " + priezvisko);
return printService;
}
}
bean。但是它也可以工作。
有人可以告诉我为什么吗?
class Lead < ApplicationRecord
has_many :lead_comments
end
class LeadComment < ApplicationRecord
belongs_to :lead
end