Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/spring-boot/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/visual-studio-2010/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
';作为Spring Boot应用程序运行';关于STS,但是;“网页不可用”;在浏览器中_Spring_Spring Boot - Fatal编程技术网

';作为Spring Boot应用程序运行';关于STS,但是;“网页不可用”;在浏览器中

';作为Spring Boot应用程序运行';关于STS,但是;“网页不可用”;在浏览器中,spring,spring-boot,Spring,Spring Boot,正如标题所说,我右键单击SpringBoot项目并作为SpringBoot应用程序运行。这是我在STS控制台窗口中看到的: /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|=======

正如标题所说,我右键单击SpringBoot项目并作为SpringBoot应用程序运行。这是我在STS控制台窗口中看到的:

 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.3.2.RELEASE)

2016-01-30 21:06:29.124  INFO 6584 --- [           main] l.IssueManagerApplication                : Starting IssueManagerApplication on LVN with PID 6584 (E:\_WORKSPACE\SPRING_BOOT\issue-manager\target\classes started by Le in E:\_WORKSPACE\SPRING_BOOT\issue-manager)
2016-01-30 21:06:29.130  INFO 6584 --- [           main] l.IssueManagerApplication                : No active profile set, falling back to default profiles: default
2016-01-30 21:06:29.249  INFO 6584 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@12d575ec: startup date [Sat Jan 30 21:06:29 EET 2016]; root of context hierarchy
2016-01-30 21:06:31.208  INFO 6584 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2016-01-30 21:06:32.032  INFO 6584 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2016-01-30 21:06:32.077  INFO 6584 --- [           main] l.IssueManagerApplication                : Started IssueManagerApplication in 4.163 seconds (JVM running for 6.548)
2016-01-30 21:06:32.078  INFO 6584 --- [       Thread-2] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@12d575ec: startup date [Sat Jan 30 21:06:29 EET 2016]; root of context hierarchy
2016-01-30 21:06:32.084  INFO 6584 --- [       Thread-2] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown
当我打开localhost:8080时,它只显示了一个灰色页面,上面写着“此网页不可用”。显然,服务器根本没有启动,或者它启动了,但随后就停止了


我已经试过运行
mvn spring boot:run
,它也会像上面那样注销信息,再加上
BUILD SUCCESS
,甚至在没有我的情况下也会停止运行
Ctrl+C
。所以我不知道如何运行我的“hello world”spring boot应用程序。

我通过在pom.xml中添加以下内容解决了这个问题:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

org.springframework.boot