Replies: 1 comment 7 replies
-
Quarkus extensions can add hooks wherever to trigger reloads. See https://quarkus.io/guides/writing-extensions#triggering-live-reload |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If I'm working on developing a service where an http API isn't a core feature (if a feature at all), is there an alternative means to triggering a live-reload of code in dev mode?
For example, a small event-driven service for data-synchronising, where I don't want to bother calling every time I make a change, but would like to run the new code when next triggered by an event. Or, a service that uses
@Scheduled
, where I'd like the updated code to be run on the next schedule.I feel like watching for file changes and doing a live reload on file saves would work fine for me, to avoid the need for any manual intervention to trigger the reload.
If not, would the be wider support for adding a parameter to enable reload on file save?
Beta Was this translation helpful? Give feedback.
All reactions