我在Spring-Boot项目中配置了流程。但是IDEA无法在 someflow.xml 编辑器中显示任何提示。 IDEA也无法在项目来源中涉及到bean difinitons
@Bean
public FlowDefinitionRegistry flowRegistry() {
return getFlowDefinitionRegistryBuilder(flowBuilderServices())
.setBasePath("classpath*:/flow")
.addFlowLocationPattern("/*.xml")
.build();
}