|
entrypoint='find /app | entr -r java -noverify -cp /app/resources:/app/classes:/app/libs/* dev.tilt.example.ExampleApplication') |
This example also includes spring-dev-tools, which automatically restarts the Spring Boot ExampleApplication without restarting the entire Java process. The recommended example seems to rely on this this and doesn't use entr in its entrypoint.
Is there something different about using jib that makes entr necessary for live updates?
tilt-example-java/102-jib-live-update/Tiltfile
Line 18 in 5aa9b4e
This example also includes spring-dev-tools, which automatically restarts the Spring Boot
ExampleApplicationwithout restarting the entire Java process. The recommended example seems to rely on this this and doesn't useentrin its entrypoint.Is there something different about using
jibthat makesentrnecessary for live updates?