-
Notifications
You must be signed in to change notification settings - Fork 41.6k
Open
Labels
type: documentationA documentation updateA documentation update
Milestone
Description
https://openjdk.org/jeps/514 which landed in Java 25.
Instead of
# Creation
java -XX:AOTMode=record -XX:AOTConfiguration=app.aotconf -cp app.jar com.example.App
java -XX:AOTMode=create -XX:AOTConfiguration=app.aotconf -XX:AOTCache=app.aot
# Run
java -XX:AOTCache=app.aot -cp app.jar com.example.App ...
you can now use
# Creation
java -XX:AOTCacheOutput=app.aot -cp app.jar com.example.App ...
# Run
java -XX:AOTCache=app.aot -cp app.jar com.example.App ...
snicoll, YuanXiaoJing0615 and SHINMH
Metadata
Metadata
Assignees
Labels
type: documentationA documentation updateA documentation update