1. 工具简介
1. 工具地址
2. 工具介绍
- 选择创建项目类型:Maven、Gradle
- 选择使用的开发工具
- 选择SpringBoot版本号
- Group: 一般为公司域名倒写
- Artiface: 一般为项目名
- 选择要添加的依赖
2. 使用工具创建Demo
1. 工具选项
- Maven Project
- Java
- 2.0.3
- com.shadowolf
- spring_boot_demo
- Web
2. IDEA配置运行项目
-
使用 IDEA 打开 spring_boot_demo
-
设置 SDK
-
设置 src 为 Sources Root
-
此处IDEA可能会报Error:(3, 17) java: 程序包org.junit不存在错误
- 解决办法: 右键点击pom.xml, 重新 Maven -> Reimport 即可。
-
创建测试controller:src/main/java/com/test/spring_boot_demo/controller/SampleController.java
package com.test.spring_boot_demo.controller;import org.springframework.boot.autoconfigure.EnableAutoConfiguration;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;@Controller@EnableAutoConfigurationpublic class SampleController { @RequestMapping("/") public String home() { return "Hello World!"; }}
-
运行:SpringBootDemoApplication.java
-
测试:浏览器访问 localhost:8080