Spring @DependsOn添加多个

@DependsOn
添加一个时这么写:

@DependsOn("springContextUtils")

添加多个时这么写:

@DependsOn({"springContextUtils","test"})

你可能感兴趣的:(SpringBoot,JAVA,java)