salesforce / rules_spring

Bazel rule for building Spring Boot apps as a deployable jar
BSD 3-Clause "New" or "Revised" License
224 stars 48 forks source link

Use exec() to launch the Spring Boot jar in launcher script for bazel run #91

Closed plaird closed 3 years ago

plaird commented 3 years ago

Good idea by @joeljeske to use exec() to launch the app when using bazel run.

bazel run //projects/myservice

such that Spring Boot signal handling (didn't know it existed!) will work.

plaird commented 3 years ago

Joel submitted the PR as #90