I am simply trying to run the sample code (via STS IDE as a Spring Boot App), but it simply terminates (and no errors occur). Downloaded from git, didn't modify.
Building a RESTful Web Service Sample Code : https://spring.io/guides/gs/rest-service/ Git Repo : git clone https://github.com/spring-guides/gs-rest-service.git
**Note : The one thing I tried, put [spring-boot-starter-tomcat] in my maven dependencies and downloaded, to no avail.
:: Spring Boot :: (v1.4.3.RELEASE)
2017-01-09 17:33:14.942 INFO 5548 --- [ main] hello.Application : Starting Application on TDL05100504 with PID 5548 (C:\wm_dev\gs-rest-service\complete\target\classes started by marshw2 in C:\wm_dev\gs-rest-service\complete) 2017-01-09 17:33:14.946 INFO 5548 --- [ main] hello.Application : No active profile set, falling back to default profiles: default 2017-01-09 17:33:15.043 INFO 5548 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@6dc17b83: startup date [Mon Jan 09 17:33:15 EST 2017]; root of context hierarchy 2017-01-09 17:33:17.526 INFO 5548 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup 2017-01-09 17:33:17.553 INFO 5548 --- [
main] hello.Application : Started Application in 3.224 seconds (JVM running for 4.192) 2017-01-09 17:33:17.555 INFO 5548 --- [ Thread-1] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@6dc17b83: startup date [Mon Jan 09 17:33:15 EST 2017]; root of context hierarchy 2017-01-09 17:33:17.559 INFO 5548 --- [ Thread-1] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
The project will run as is, so you shouldn't need to make any changes. Create a folder named resources under src/main. In that folder add a file called application.properties (or application.yml if you prefer yaml). Add a line to this file that will crank up the logging level to debug, you should get more details about what's going on.
This is going to generate a LOT of information, but should spit out enough to show you what's up.