💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### Gradle 此似乎,你的应用程序应该可以工作。由于你使用了`org.springframework.boot`Gradle插件,你有一个有用的`bootRun`goal,你可以用它来启动该应用程序。在项目根目录下输入`gradle bootRun`来启动应用程序。你应该看到类似以下的输出: ~~~shell $ gradle bootRun . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v3.2.0-SNAPSHOT) ....... . . . ....... . . . (log output here) ....... . . . ........ Started MyApplication in 0.906 seconds (process running for 6.514) ~~~ 如果你打开网页浏览器,`[localhost:8080](http://localhost:8080/)`,你应该看到以下输出: ~~~ Hello World! ~~~ 要优雅地退出应用程序,按`ctrl-c`。