Test app reloadingλ︎
The compojure template added several middleware functions to our project to make the webapp easier to work with. The wrap-reload middleware picks up changes to our code and will automatically load them into our running webapp. This provides rapid feedback on your coding.
Note:: Make a simple change to the
app-routesfunction insrc/shorturl-service/handler.cljfile, eg. change the "Hello World" string to "Hello reloaded World"λ︎
Now, refresh your browser and see the changes made.
Hint:: You should only need to restart the server again if you add libraries or define code outside of the scope of the
app. Or if your code crashes the server, but I am sure that wont happen :)λ︎