@ -9,7 +9,7 @@ working as you expect it to, on Stack Overflow using the spring-boot tag.
@@ -9,7 +9,7 @@ working as you expect it to, on Stack Overflow using the spring-boot tag.
Bug report
Please provide details of the problem, including the version of Spring Boot that you
are using. If possible, please provide a testcase or sample application that reproduces
are using. If possible, please provide a testcase or sample application that reproduces
the problem. This makes it much easier for us to diagnose the problem and to verify that
@ -792,9 +792,9 @@ content into your application; rather pick only the properties that you need.
@@ -792,9 +792,9 @@ content into your application; rather pick only the properties that you need.
spring.activemq.in-memory=true # Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.
spring.activemq.password= # Login password of the broker.
spring.activemq.user= # Login user of the broker.
spring.activemq.packages.trust-all=false # Trust all packages
spring.activemq.packages.trust-all=false # Trust all packages.
spring.activemq.packages.trusted= # Comma-separated list of specific packages to trust (when not trusting all packages).
spring.activemq.pool.configuration.*= # See PooledConnectionFactory
spring.activemq.pool.configuration.*= # See PooledConnectionFactory.
spring.activemq.pool.enabled=false # Whether a PooledConnectionFactory should be created instead of a regular ConnectionFactory.
spring.activemq.pool.expiry-timeout=0 # Connection expiration timeout in milliseconds.
spring.activemq.pool.idle-timeout=30000 # Connection idle timeout in milliseconds.
@ -237,7 +237,7 @@ creating a bean of type `MvcEndpoint`. Your `MvcEndpoint` is not a `@Controller`
@@ -237,7 +237,7 @@ creating a bean of type `MvcEndpoint`. Your `MvcEndpoint` is not a `@Controller`
can use `@RequestMapping` (and `@Managed*`) to expose resources.
TIP: If you are doing this as a library feature consider adding a configuration class
annoated with `@ManagementContextConfiguration` to `/META-INF/spring.factories` under the
annotated with `@ManagementContextConfiguration` to `/META-INF/spring.factories` under the
key `org.springframework.boot.actuate.autoconfigure.ManagementContextConfiguration`. If
you do that then the endpoint will move to a child context with all the other MVC
endpoints if your users ask for a separate management port or address. A configuration
@ -525,7 +525,7 @@ configuration to replace specific parts of the auto-configuration. For example,
@@ -525,7 +525,7 @@ configuration to replace specific parts of the auto-configuration. For example,
you add your own `DataSource` bean, the default embedded database support will back away.
If you need to find out what auto-configuration is currently being applied, and why,
start your application with the `--debug` switch. This will enables debug logs for a
start your application with the `--debug` switch. This will enable debug logs for a
selection of core loggers and log an auto-configuration report to the console.
@ -41,23 +41,23 @@ public class InfoProperties implements Iterable<InfoProperties.Entry> {
@@ -41,23 +41,23 @@ public class InfoProperties implements Iterable<InfoProperties.Entry> {
*@paramentriestheinformationtoexpose
*/
publicInfoProperties(Propertiesentries){
Assert.notNull(entries,"Properties must not be null");
Assert.notNull(entries,"Entries must not be null");