Re: Starting Spring Boot App after deploying it to CF
Naga Rakesh
Did you make your jar/war executable? if not that would help.
toggle quoted message
Show quoted text
Just add the following below the dependency in pom <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins></build> spring-boot-maven-plugin will help make the jar/war executable Thanks, Venkata On Thu, Sep 10, 2015 at 12:33 PM, Qing Gong <qinggong(a)gmail.com> wrote:
I built a Spring Boot App and using java -jar SpringBootApp.jar to run it, |
|