diff --git a/snapshot/guide/index.html b/snapshot/guide/index.html index c70bffe04..04ef93791 100644 --- a/snapshot/guide/index.html +++ b/snapshot/guide/index.html @@ -131,7 +131,7 @@

Table of Contents

Micronaut Servlet

Provides integration between Micronaut and the Servlet API

-

Version:

+

Version:

1 Introduction

@@ -1152,6 +1152,16 @@

Management port

This is not currently supported with Servlet based servers, and management endpoints (when enabled) will be available on the same port as the main application.

+
+

ServiceReadyEvent publication

+
+

When using the Netty runtime, the ServiceReadyEvent is automatically published when the server is ready to accept requests. +This is not currently supported with Servlet based servers.

+
+
+

If you wish to generate a ServiceReadyEvent you can do so manually by injecting a ApplicationEventPublisher<ServiceReadyEvent> bean and publishing the event yourself when your application is ready.

+
+

9 FAQ