Package org.miaixz.bus.spring.startup
Interface StartupReporterAware
- All Superinterfaces:
org.springframework.beans.factory.Aware
public interface StartupReporterAware
extends org.springframework.beans.factory.Aware
接口可以由任何对象来实现,只要对象希望得到它所运行的
StartupReporter的通知。- Since:
- Java 17+
- Author:
- Kimi Liu
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetStartupReporter(StartupReporter startupReporter) 设置该对象运行的StartupReporter
-
Method Details
-
setStartupReporter
void setStartupReporter(StartupReporter startupReporter) throws org.springframework.beans.BeansException 设置该对象运行的StartupReporter- Parameters:
startupReporter- 这个对象要使用的StartupReporter对象- Throws:
org.springframework.beans.BeansException- 异常
-