diff --git a/_docs/spring-boot.md b/_docs/spring-boot.md index 776507bb..430b40c0 100644 --- a/_docs/spring-boot.md +++ b/_docs/spring-boot.md @@ -66,7 +66,8 @@ These property names can be changed as follows: @EnableWireMock( @ConfigureWireMock( baseUrlProperties = { "customUrl", "sameCustomUrl" }, - portProperties = "customPort")) + portProperties = "customPort" +)) class CustomPropertiesTest { @Value("${customUrl}") @@ -77,6 +78,9 @@ class CustomPropertiesTest { @Value("${customPort}") private String customPort; + + // ... +} ```