Spring属性加载器-无需PropertySourcesPlaceholderConfigurer bean即可工作-为什么?

时间:2019-03-18 07:36:32

标签: spring spring-boot

在我的代码中,我使用外部属性文件。如果我运行此代码,它将起作用。春天将给我带来梅诺(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

0 个答案:

没有答案