私はどのように考え出しましたか? Springには、onStartupメソッドを含むことができる 'Global.asax'に相当するInitializerクラスがあります。たとえば、起動時にモデルを読み込みたい場合は、このコードをここに入力します。
public void onStartup(ServletContext container) throws ServletException {
try (AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext()) {
ctx.register(BaseConfiguration.class);
ctx.setServletContext(container);
ServletRegistration.Dynamic servlet = container.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.setLoadOnStartup(1);
servlet.addMapping("/");
try {
LoadModels();
} catch (IOException e) {
e.printStackTrace();
}
}
}