11.4. 运行示例

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

  1. $ mvn spring-boot:run
  2. . ____ _ __ _ _
  3. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  4. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  5. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  6. ' |____| .__|_| |_|_| |_\__, | / / / /
  7. =========|_|==============|___/=/_/_/_/
  8. :: Spring Boot :: (v1.4.1.BUILD-SNAPSHOT)
  9. ....... . . .
  10. ....... . . . (log output here)
  11. ....... . . .
  12. ........ Started Example in 2.222 seconds (JVM running for 6.514)

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

  1. Hello World!

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