Remove ApplicationInfo

Rework commit 4a69755b to remove the need for the ApplicationInfo class.
The updated code now uses the auto-configuration class to compute a
default persistence unit root location

Closes gh-6635
This commit is contained in:
Phillip Webb
2016-08-29 22:53:15 +01:00
committed by Stephane Nicoll
parent b488a3d9a3
commit 2a22a7af12
8 changed files with 52 additions and 139 deletions

View File

@@ -94,8 +94,8 @@ You can also use the `spring.main.banner-mode` property to determine if the bann
to be printed on `System.out` (`console`), using the configured logger (`log`) or not
at all (`off`).
The printed banner will be available via an `ApplicationInfo` registered as a singleton
bean under the name `springApplicationInfo`.
The printed banner will be registered as a singleton bean under the name
`springBootBanner`.
[NOTE]
====