我有两个工厂方法:@Bean@ConditionalOnProperty("some.property.text")publicApplecreateAppleX(){}和@Bean@ConditionalOnProperty("some.property.text",matchIfMissing=true)publicApplecreateAppleY(){}如果根本没有“some.property.text”属性-第二种方法工作正常,第一种方法被忽略,这是期望的行为。如果我们将一些字符串设置为“some.property.text”——这两种方法都被认为对生成Apple对象有效,这