我正在尝试通过添加一些 ad-hoc actuator来增强apache-james@RestController
的 Spring 版本。
为了做到这一点,我正在考虑启动一个嵌入式 Tomcat 9.x 服务器作为 sidecar,以便可以访问端点。
不幸的是,我遇到了一个IllegalStateException: No ServletContext set
例外。
我到目前为止的代码如下:
/**
* @author cdprete
* @since 09.06.21
*/
public class EmbeddedTomcat implements DisposableBean {
private final Tomcat tomcat;
public EmbeddedTomcat() throws LifecycleException {
String appBase = ".";
tomcat = new Tomcat();
tomcat.getConnector();
tomcat.getHost().setAppBase(appBase);
Context context = tomcat.addWebapp("", appBase);
// Don't scan MANIFESTs, otherwise lots of JARs will be reported as missing
((StandardJarScanner) context.getJarScanner()).setScanManifest(false);
tomcat.start();
}
@Override
public void destroy() throws Exception {
tomcat.destroy();
}
}
/**
* @author cdprete
* @since 08.06.21
*/
@EnableWebMvc
@Configuration
@Import({HealthConfiguration.class, DiskSpaceConfiguration.class, PingConfiguration.class, TraceConfiguration.class})
public class ActuatorConfiguration implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(ActuatorConfiguration.class);
ctx.setServletContext(servletContext);
servletContext.addListener(new ContextLoaderListener(ctx));
ServletRegistration.Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.setLoadOnStartup(1);
servlet.addMapping("/");
}
}
在主spring.xml
文件中:
<beans ...>
...
<!-- Embedded Tomcat -->
<bean class="ch.ti8m.channelsuite.james.actuator.EmbeddedTomcat" />
<!-- Actuator configuration -->
<bean class="ch.ti8m.channelsuite.james.actuator.ActuatorConfiguration" />
</beans>
如果我从该main
方法启动 Tomcat(例如,像这里一样),那么 Web 应用程序将按预期工作(至少是链接示例中的那个)。
我错过了什么?