You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
When I create a native image of spring application that uses @Order, native executable doesnt respect @Order specified while the non-native image version respects it.
PS: I havent tried with org.springframework.core.Ordered, javax.annotation.Priority, org.springframework.core.PriorityOrdered & other ways to specify order. Issue might exist even there too. Please check if the issue occurs even with that.
The text was updated successfully, but these errors were encountered:
Thanks for the fix. Does this fix address all of these aswell?
PS: I havent tried with org.springframework.core.Ordered, javax.annotation.Priority, org.springframework.core.PriorityOrdered & other ways to specify order. Issue might exist even there too. Please check if the issue occurs even with that.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I create a native image of spring application that uses
@Order
, native executable doesnt respect@Order
specified while the non-native image version respects it.When I run native image (
./gradlew nativeCompile
) I get the following output (ordered based on classname)If I run the same program in regular JVM, I get the following output (correctly ordered based on
@Order
)Version info
Ubuntu 20.04.4 LTS
22.2.r17-grl
PS: I havent tried with
org.springframework.core.Ordered
,javax.annotation.Priority
,org.springframework.core.PriorityOrdered
& other ways to specify order. Issue might exist even there too. Please check if the issue occurs even with that.The text was updated successfully, but these errors were encountered: