我正在看这个例子:在 JavaFX 2.0 中构建应用程序,它们显示了一个自定义 SpringFxmlLoader:
import java.io.IOException;
import java.io.InputStream;
import javafx.fxml.FXMLLoader;
import org.springframework.context.ApplicationContext;
public class SpringFxmlLoader
{
private ApplicationContext context;
public SpringFxmlLoader(ApplicationContext context)
{
this.context = context;
}
public Object load(String url, Class<?> controllerClass) throws IOException
{
InputStream fxmlStream = null;
try
{
fxmlStream = controllerClass.getResourceAsStream(url);
Object instance = context.getBean(controllerClass);
FXMLLoader loader = new FXMLLoader();
loader.getNamespace().put("controller", instance);
return loader.load(fxmlStream);
}
finally
{
if (fxmlStream != null)
{
fxmlStream.close();
}
}
}
}`
为什么需要创建一个特定的 spring FXML Loader?我的意思是,即使使用简单的 fxml 加载器,当您像这样加载 fxml 时:
AnchorPane page = (AnchorPane) FXMLLoader.load(TabePaneGraph.class.getResource("Sample.fxml"));
无论如何都会调用示例控制器,并且仍然完成任何初始化。我试图了解这个特定的自定义 SpringFxmlLoader 实现背后的动机。