Local Development With IDE Integration

I’ve got a locally running single-node minikube kube instance with a temporal server deployed (via helm chart). I’ve got a spring boot service with a spring MVC controller API that is used to trigger workflows. I use kubectl to port-forward traffic on 7233 to the headless interface and register the workflows on startup of the spring boot app. Everything is working swimmingly and am able to run (and debug) workflows fine but I’m finding that I have to restart the spring boot app every time I change the workflow or activity logic. Is there any recommended way to automate workflow/activity updates when changes are made in an IDE (say intellij)?

I think this will depend on the framework you are using more than Temporal. For Spring Boot you could possibly look into their spring-boot-devtools integration with IntelliJ / IDE of your choice – Using Spring Boot