SpringBootContainer handles Spring Boot JAR applications
| 10 | |
| 11 | // SpringBootContainer handles Spring Boot JAR applications |
| 12 | type SpringBootContainer struct { |
| 13 | context *common.Context |
| 14 | jarFile string |
| 15 | startScript string // For staged Spring Boot apps (bin/application) |
| 16 | } |
| 17 | |
| 18 | // NewSpringBootContainer creates a new Spring Boot container |
| 19 | func NewSpringBootContainer(ctx *common.Context) *SpringBootContainer { |
nothing calls this directly
no outgoing calls
no test coverage detected