From 187b4e706c778ec2e5f3fe4e2f61cb3d461efef4 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 9 Oct 2014 13:04:35 -0700 Subject: [PATCH] Escape `...*...` outputs using `+...*...+` --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index f33199485eb..586f804c532 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1074,7 +1074,7 @@ All the registered endpoints should be `@Components` with HTTP resource annotati Since the `Endpoint` is a Spring `@Component` its lifecycle is managed by Spring and you can `@Autowired` dependencies and inject external configuration with `@Value`. The Jersey -servlet will be registered and mapped to '`/\*`' by default. You can change the mapping +servlet will be registered and mapped to '`+/*+`' by default. You can change the mapping by adding `@ApplicationPath` to your `ResourceConfig`. There is a {github-code}/spring-boot-samples/spring-boot-sample-jersey[Jersey sample] so