此时我们的程序应该能够运行。由于使用了spring-boot-starter-parent
POM,因此我们有一个有用的目标run
,可以使用它来启动应用程序。在项目的根目录键入mvn spring-boot:run
来启动程序:
$ mvn spring-boot:run
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.7.RELEASE)
....... . . .
....... . . . (log output here)
....... . . .
........ Started Example in 2.222 seconds (JVM running for 6.514)
如果打开一个Web浏览器到localhost:8080,应当看到以下输出:
Hello World!
要正常退出程序按ctrl-c
。