@@ -206,7 +206,7 @@ sensible overriding of values, properties are considered in the the following or
206206. Java System properties (`System.getProperties()`).
207207. OS environment variables.
208208. JNDI attributes from `java:comp/env`
209- . A `RandomValuePropertySource` that only has properties in `random.*`.
209+ . A `RandomValuePropertySource` that only has properties in `+ random.*+ `.
210210. Application properties outside of your packaged jar (`application.properties`
211211 including YAML and profile variants).
212212. Application properties packaged inside your jar (`application.properties`
@@ -250,7 +250,7 @@ or test cases). It can produce integers, longs or strings, e.g.
250250 my.number.in.range=${random.int[1024,65536]}
251251----
252252
253- The `random.int*` syntax is `OPEN value (,max) CLOSE` where the `OPEN,CLOSE` are any
253+ The `+ random.int*+ ` syntax is `OPEN value (,max) CLOSE` where the `OPEN,CLOSE` are any
254254character and `value,max` are integers. If `max` is provided then `value` is the minimum
255255value and `max` is the maximum (exclusive).
256256
@@ -737,7 +737,7 @@ As with console output, `ERROR`, `WARN` and `INFO` level messages are logged by
737737=== Log Levels
738738
739739All the supported logging systems can have the logger levels set in the Spring
740- `Environment` (so for example in `application.properties`) using '`logging.level.*=LEVEL`'
740+ `Environment` (so for example in `application.properties`) using '`+ logging.level.*=LEVEL+ `'
741741where '`LEVEL`' is one of TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF. Example
742742`application.properties`:
743743
@@ -929,7 +929,7 @@ the default MVC configuration) because Spring will always be able to handle requ
929929through the `DispatcherServlet`.
930930
931931In addition to the '`standard`' static resource locations above, a special case is made for
932- http://www.webjars.org/[Webjars content]. Any resources with a path in `/webjars/**` will
932+ http://www.webjars.org/[Webjars content]. Any resources with a path in `+ /webjars/**+ ` will
933933be served from jar files if they are packaged in the Webjars format.
934934
935935TIP: Do not use the `src/main/webapp` folder if your application will be packaged as a
@@ -1045,7 +1045,7 @@ your `application.properties` during configuration.
10451045
10461046By default, if the context contains only a single Servlet it will be mapped to `/`. In
10471047the case of multiple Servlets beans the bean name will be used as a path prefix. Filters
1048- will map to `/* `.
1048+ will map to `+/*+ `.
10491049
10501050If convention-based mapping is not flexible enough you can use the
10511051`ServletRegistrationBean` and `FilterRegistrationBean` classes for complete control. You
@@ -1186,16 +1186,16 @@ The basic features you get out of the box in a web application are:
11861186
11871187* An `AuthenticationManager` bean with in-memory store and a single user (see
11881188 `SecurityProperties.User` for the properties of the user).
1189- * Ignored (unsecure) paths for common static resource locations (`/css/\*\* `, `/js/\*\* `,
1190- `/images/\*\* ` and `\*\ */favicon.ico`).
1189+ * Ignored (unsecure) paths for common static resource locations (`+ /css/**+ `, `+ /js/**+ `,
1190+ `+ /images/**+ ` and `+* */favicon.ico+ `).
11911191* HTTP Basic security for all other endpoints.
11921192* Security events published to Spring's `ApplicationEventPublisher` (successful and
11931193 unsuccessful authentication and access denied).
11941194* Common low-level features (HSTS, XSS, CSRF, caching) provided by Spring Security are
11951195 on by default.
11961196
11971197All of the above can be switched on and off or modified using external properties
1198- (`security.*`). To override the access rules without changing any other autoconfigured
1198+ (`+ security.*+ `). To override the access rules without changing any other autoconfigured
11991199features add a `@Bean` of type `WebConfigurerAdapter` with
12001200`@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)`.
12011201
@@ -1206,7 +1206,7 @@ If the Actuator is also in use, you will find:
12061206* The default user will have the `ADMIN` role as well as the `USER` role.
12071207
12081208The Actuator security features can be modified using external properties
1209- (`management.security.*`). To override the application access rules
1209+ (`+ management.security.*+ `). To override the application access rules
12101210add a `@Bean` of type `WebConfigurerAdapter` and use
12111211`@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)` if you _don't_ want to override
12121212the actuator access rules, or `@Order(ManagementServerProperties.ACCESS_OVERRIDE_ORDER)`
@@ -1285,7 +1285,7 @@ NOTE: Additional connection pools can always be configured manually. If you defi
12851285own `DataSource` bean, auto-configuration will not occur.
12861286
12871287DataSource configuration is controlled by external configuration properties in
1288- `spring.datasource.*`. For example, you might declare the following section
1288+ `+ spring.datasource.*+ `. For example, you might declare the following section
12891289in `application.properties`:
12901290
12911291[source,properties,indent=0]
@@ -1452,7 +1452,7 @@ their http://projects.spring.io/spring-data-jpa/[reference documentation].
14521452==== Creating and dropping JPA databases
14531453By default JPA database will be automatically created *only* if you use an embedded
14541454database (H2, HSQL or Derby). You can explicitly configure JPA settings using
1455- `spring.jpa.*` properties. For example, to create and drop tables you can add the
1455+ `+ spring.jpa.*+ ` properties. For example, to create and drop tables you can add the
14561456following to your `application.properties`.
14571457
14581458[indent=0]
@@ -1462,7 +1462,7 @@ following to your `application.properties`.
14621462
14631463NOTE: Hibernate's own internal property name for this (if you happen to remember it
14641464better) is `hibernate.hbm2ddl.auto`. You can set it, along with other Hibernate native
1465- properties, using `spring.jpa.properties.*` (the prefix is stripped before adding them
1465+ properties, using `+ spring.jpa.properties.*+ ` (the prefix is stripped before adding them
14661466to the entity manager). Example:
14671467
14681468[indent=0]
@@ -1815,7 +1815,7 @@ to integrate with JMS. Adding `org.hornetq:hornetq-jms-server` to your applicati
18151815you to use the embedded mode.
18161816
18171817HornetQ configuration is controlled by external configuration properties in
1818- `spring.hornetq.*`. For example, you might declare the following section in
1818+ `+ spring.hornetq.*+ `. For example, you might declare the following section in
18191819`application.properties`:
18201820
18211821[source,properties,indent=0]
@@ -1848,7 +1848,7 @@ available on the classpath. If the broker is present, an embedded broker is star
18481848configured automatically (as long as no broker URL is specified through configuration).
18491849
18501850ActiveMQ configuration is controlled by external configuration properties in
1851- `spring.activemq.*`. For example, you might declare the following section in
1851+ `+ spring.activemq.*+ `. For example, you might declare the following section in
18521852`application.properties`:
18531853
18541854[source,properties,indent=0]
0 commit comments