11.4. 运行示例

到此,示例应用可以工作了。由于使用了spring-boot-starter-parent POM,这样你就有了一个非常有用的run目标来启动程序。在项目根目录下输入mvn spring-boot:run启动应用。你会看到如下的输出:

$ mvn spring-boot:run

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::  (v2.0.0.RELEASE)
....... . . .
....... . . . (log output here)
....... . . .
........ Started Example in 2.222 seconds (JVM running for 6.514)

如果使用浏览器打开localhost:8080,你应该可以看到如下输出:

Hello World!

点击ctrl-c温柔地关闭应用程序。

最后更新于