Exercise the Quarkus Live Coding capabilities
Quarkus Dev Mode provides a powerful live coding experience. Any changes you make to your Java files or resource files will be automatically picked up and applied to the running application. This means you can see the effects of your changes immediately without having to restart the application.
-
In IDE, open the
GreetingResource.javafile in the src/main/java/org/acme/people/rest directory and changereturn "Hello from Quarkus REST";toreturn "Hola from Quarkus REST";. -
After making this change, reload the same brower tab that was showing
Hello from Quarkus REST. It should now showHola from Quarkus REST.
Wow, how cool is that? Supersonic Subatomic live reload! Go ahead and change it a few more times and access the endpoint again. And we’re just getting started. Leave the app running so we can continue to change it on the fly in the next section.
|
|
|
This will also listen for a debugger on port |