ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
到这里,你的应用可以工作了,由于使用了`spring-boot-starter-parent`pom,可以使用`run`目标启动应用,在项目根目录执行`mvn spring-boot:run`启动应用,你可以看到如下输出: ~~~ $ mvn spring-boot:run . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.0.4.RELEASE) ....... . . . ....... . . . (log output here) ....... . . . ........ Started Example in 2.222 seconds (JVM running for 6.514) ~~~ 如果打开浏览器,输入`localhost:8080`,可以看到如下内容: ~~~ Hello World! ~~~ 要正常退出应用程序,请按`ctrl-c`。