Replies: 1 comment 4 replies
-
are you using Micronaut AOT? //cc @melix |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My REST service builds and runs fine in 4.5.1 but when I switched to 4.6.2, it started to give me exceptions: Here are the things I notcied in 4.6.2:
After the services is built, it throws an exception, right after the BUILD SUCCESS message, see below:
![image](https://private-user-images.githubusercontent.com/91912323/372945447-65a40819-d258-4b13-abf4-a243103b096a.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk3MTUwNTUsIm5iZiI6MTczOTcxNDc1NSwicGF0aCI6Ii85MTkxMjMyMy8zNzI5NDU0NDctNjVhNDA4MTktZDI1OC00YjEzLWFiZjQtYTI0MzEwM2IwOTZhLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE2VDE0MDU1NVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTgyNTQ0OGQxYzliMGNkZjI1ZTZjNDgyZmU5M2U2NTY0ZWM4OTE0MTQyMzBkOWE2ZDU5MjIyYmM4MTE2YTJmN2YmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.YQsKb8BRKFyHYV06UOcKwbD69gtp1Lkq2xjAgexxLyY)
I am using Swagger annotation to generate Swagger doc and noticed it stopped adding the server context path to swagger doc as set in application property file micronaut.server.context-path.
When I call any endpoint, it throws PAGE Not Found exception after successfully executing the endpoint. I get this error after successful exection of my endpoint:
Are there any config change that are needed to migrate to 4.6.2?
Any idea how to fix these issues using 4.6.2?
Beta Was this translation helpful? Give feedback.
All reactions