Commit 1: Add keep-alive and inbound limits server properties
Resolves #6
[!NOTE]
I piggybacked the following feature on commit 2 (it is related and builds upon the first commit)
Commit 2: Generate metadata for config props
Adds the spring-boot-configuration-processor to enable automatic metadata
generation so our config props play well in IDEs.
Also updates the default values for duration properties to use
Duration.of<Unit>(long) instead of Duration.of(long, DurationUnit) as
Spring Boot config processor can not determine a default for the config
metadata in the latter format.
Commit 1: Add keep-alive and inbound limits server properties
Resolves #6
Commit 2: Generate metadata for config props Adds the
spring-boot-configuration-processor
to enable automatic metadata generation so our config props play well in IDEs.Also updates the default values for duration properties to use
Duration.of<Unit>(long)
instead ofDuration.of(long, DurationUnit)
as Spring Boot config processor can not determine a default for the config metadata in the latter format.