Skip to content

Commit 5be24ba

Browse files
committed
switch from native to aot
1 parent 9821cd2 commit 5be24ba

7 files changed

Lines changed: 5 additions & 419 deletions

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ try {
164164
}
165165
"spring-boot-admin" {
166166
$appName = "SpringBootAdmin"
167-
$dependencies = "codecentric-spring-boot-admin-server,native"
167+
$dependencies = "codecentric-spring-boot-admin-server"
168168
}
169169
Default {
170170
Write-Host "$Name is not currently supported by this script"
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
--- ./src/main/resources/application.properties 2025-10-01 14:13:49.968047867 -0500
22
+++ ./src/main/resources/application.properties 2026-01-27 00:00:00.000000000 -0500
3-
@@ -0,0 +1,3 @@
3+
@@ -0,0 +1,2 @@
44
+server.port=9099
55
+spring.thymeleaf.check-template-location=false
6-
+logging.level.io.steeltoe.docker=INFO

spring-boot-admin/patches/build.gradle.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
+ createdDate = "now"
1010
+ environment = [
1111
+ "BP_SPRING_CLOUD_BINDINGS_DISABLED": "true",
12-
+ "BP_NATIVE_IMAGE_BUILD_ARGUMENTS": "-H:+UnlockExperimentalVMOptions"
12+
+ "BP_JVM_AOTCACHE_ENABLED": "true"
1313
+ ]
1414
+}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
--- ./src/main/java/io/steeltoe/docker/springbootadmin/SpringBootAdmin.java 2024-09-20 12:49:35.099908129 -0500
22
+++ ./src/main/java/io/steeltoe/docker/springbootadmin/SpringBootAdmin.java 2026-01-27 00:00:00.000000000 -0500
3-
@@ -2,7 +2,11 @@
3+
@@ -2,7 +2,9 @@
44

55
import org.springframework.boot.SpringApplication;
66
import org.springframework.boot.autoconfigure.SpringBootApplication;
7-
+import org.springframework.context.annotation.Import;
87
+import de.codecentric.boot.admin.server.config.EnableAdminServer;
98

109
@SpringBootApplication
1110
+@EnableAdminServer
12-
+@Import(SteeltoeAdminConfiguration.class)
1311
public class SpringBootAdmin {
12+

spring-boot-admin/patches/spring-boot-admin-ssl-config.patch

Lines changed: 0 additions & 82 deletions
This file was deleted.

spring-boot-admin/patches/ssl-trust-config.patch

Lines changed: 0 additions & 201 deletions
This file was deleted.

0 commit comments

Comments
 (0)