Учитывая, что ваш проект только что сгенерирован из весеннего инициализатора, он на самом деле ничего не делает, и вам придется добавить некоторые функции, чтобы он не завершался немедленно.
Если вы ожидаете, что он запуститсяв качестве веб-приложения вам нужно добавить зависимость от spring-boot-starter-web
.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Если вы предпочитаете tomcat
в качестве контейнера, вы можете использовать вышеуказанную зависимость, но если вы предпочитаетечто-то еще, например jetty
, вам придется исключить tomcat
из spring-boot-starter-web
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
Тогда вы получите что-то близкое к этому при запуске DemoApplication
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.2.1.BUILD-SNAPSHOT)
2019-11-04 19:38:57.796 INFO 11674 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication on hostname with PID 11674 (/tmp/demo/target/classes started by user in /tmp/demo)
2019-11-04 19:38:57.800 INFO 11674 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to default profiles: default
2019-11-04 19:38:58.446 INFO 11674 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2019-11-04 19:38:58.451 INFO 11674 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-11-04 19:38:58.451 INFO 11674 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.27]
2019-11-04 19:38:58.487 INFO 11674 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-11-04 19:38:58.487 INFO 11674 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 641 ms
2019-11-04 19:38:58.583 INFO 11674 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-11-04 19:38:58.690 INFO 11674 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2019-11-04 19:38:58.692 INFO 11674 --- [ main] com.example.demo.DemoApplication : Started DemoApplication in 1.148 seconds (JVM running for 1.714)