📅  最后修改于: 2023-12-03 15:38:26.667000             🧑  作者: Mango
Spring Initializr 是一个快速创建 Spring Boot 项目的工具。本文将介绍如何在 Spring Initializr 中创建 Spring Boot 项目并在 IntelliJ IDEA 中运行。
打开浏览器并访问 Spring Initializr 网站。
在 Spring Initializr 网站界面中,你需要配置以下几个选项:
除了这些基本选项,你还可以通过单击“Add dependency”按钮来添加所需的附加依赖项。
例如,如果你需要使用 Spring Web 模块,则可以添加 spring-web 依赖项。要添加依赖项,请在搜索框中输入要添加的依赖项名称。
设置完毕后,单击“Generate”按钮以下载项目压缩包。解压缩压缩包以获取 Spring Boot 项目。
在 IntelliJ IDEA 中打开一个空的项目,然后选择菜单中的“File”->“New”->“Project from Existing Sources”。
从生成的 Spring Initializr 项目文件夹中选择“pom.xml”文件并单击“OK”以导入项目。
这将花费一些时间下载和配置所需的依赖项。完成后,你将在项目目录结构中看到“src”目录。
要运行 Spring Boot 项目,在 IntelliJ IDEA 中选择“Run”->“Run 'YourApplicationName'”菜单项。或点击 IDEA 下部的 Run 面板中的运行图标启动应用程序。
完成以上步骤后,你将在控制台中看到 Spring Boot 项目正在运行的消息。
2021-10-11 01:00:47.462 INFO 1318 --- [ restartedMain] com.example.demo.DemoApplication : Starting DemoApplication using Java 1.8.0_292 on MBP.local with PID 1318 (/Users/user/projects/demo/target/classes started by user in /Users/user/projects/demo)
2021-10-11 01:00:47.465 INFO 1318 --- [ restartedMain] com.example.demo.DemoApplication : No active profile set, falling back to default profiles: default
2021-10-11 01:00:47.534 INFO 1318 --- [ restartedMain] com.example.demo.DemoApplication : Started DemoApplication in 0.932 seconds (JVM running for 1.267)
恭喜,现在你已经成功地创建了一个新的 Spring Boot 项目,且在 IntelliJ IDEA 中运行。
在 Spring Initializr 中创建 Spring Boot 项目并在 IntelliJ IDEA 中运行是很容易的。按照本文中所述的步骤即可完成项目创建和运行。希望这篇文章对你有所帮助。