Browse Source

Escape `...*...` outputs using `+...*...+`

pull/1688/head
Phillip Webb 11 years ago
parent
commit
187b4e706c
  1. 2
      spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

2
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 @@ -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

Loading…
Cancel
Save