Skip to content

Commit a3a406b

Browse files
committed
docs: update
1 parent 697c842 commit a3a406b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Author: Sven Loesekann
77
Technologies: Angular, Spring Boot, Java, Gradle, GraphQl, GraphiQl, Typescript, Angular Cli, Angular Material, H2/Postgresql Databases, Jpa, Bing Maps, GraalVM native image
88

99
## Articles
10+
* [Comparing the efficency of a Spring Boot project as GraalVm native image and on the Jdk to a Go project](https://angular2guy.wordpress.com/2023/10/21/comparing-the-efficiency-of-a-spring-boot-project-as-graalvm-native-image-and-on-the-jdk-to-a-go-project/)
1011
* [Spring Boot 3 update experience](https://angular2guy.wordpress.com/2022/11/15/spring-boot-3-update-experience/)
1112
* [Graphql in Mircoservices](https://angular2guy.wordpress.com/2022/10/24/graphql-in-microservices/)
1213
* [Bing Maps With Angular in a Spring Boot Application](https://angular2guy.wordpress.com/2021/07/31/bing-maps-with-angular-in-a-spring-boot-application/)

buildNative.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# set prod profile in application.properties
66
# normal build
77
./gradlew clean build -PwithAngular=true -PuseChromium=true
8-
# run with native-image-agent
8+
# run with native-image-agent to generate the 'native-image' config files
99
java -Dspring.aot.enabled=true -agentlib:native-image-agent=config-merge-dir=backend/src/main/resources/META-INF/native-image -jar ./backend/build/libs/angularAndSpringWithMaps.jar
10-
# add liquibase data/*.csv files to META-INF/native-image/resource-config.json
10+
# liquibase data/*.csv files have to be included in META-INF/native-image/resource-config.json
1111
# {
1212
# "pattern":"\\Qdbchangelog/data/company_site.csv\\E"
1313
# },
@@ -22,7 +22,7 @@ java -Dspring.aot.enabled=true -agentlib:native-image-agent=config-merge-dir=bac
2222
# },
2323
# native build
2424
./gradlew clean nativeCompile -PwithAngular=true -PuseChromium=true
25-
# run native binary(more than 200MB)
25+
# run native binary(more than 240MB)
2626
./backend/build/native/nativeCompile/backend
2727
# build Docker image
2828
docker build -t angular2guy/angularandspringwithmaps-native:latest --build-arg APP_FILE=build/native/nativeCompile/backend --no-cache .

0 commit comments

Comments
 (0)