This commit is contained in:
devezhao 2022-01-11 15:56:16 +08:00
parent 82173bfcc5
commit 0ebbcbf6d7
3 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@
</parent>
<groupId>com.rebuild</groupId>
<artifactId>rebuild</artifactId>
<version>2.7.0</version>
<version>2.7.1</version>
<name>rebuild</name>
<description>RB V2 use SpringBoot</description>
<!-- UNCOMMENT USE TOMCAT -->

View file

@ -64,11 +64,11 @@ public class Application implements ApplicationListener<ApplicationStartedEvent>
/**
* Rebuild Version
*/
public static final String VER = "2.7.0";
public static final String VER = "2.7.1";
/**
* Rebuild Build [MAJOR]{1}[MINOR]{2}[PATCH]{2}[BUILD]{2}
*/
public static final int BUILD = 2070002;
public static final int BUILD = 2070103;
static {
// Driver for DB

View file

@ -93,7 +93,7 @@ public final class ServerStatus {
*/
static Status checkDatabase() {
String name = "Database";
if (Installer.isUseH2()) return Status.success(name + "/H2");
if (Installer.isUseH2()) name += "/H2";
String url = BootEnvironmentPostProcessor.getProperty("db.url");
try {