- 在 http://start.spring.io/ 中选择基础项目下载下来
此处选择的 marven 项目
选择基础项目.png
- 在 http://start.spring.io/ 中选择基础项目下载下来
-
- 导入工程
- a. 菜单中选择File–>New–>Project from Existing Sources...
- b. 选择解压后的项目文件夹,点击OK
- c. 点击Import project from external model并选择Maven,点击Next到底为止。
- 这时候的工程可能是还没有 start-web 依赖的,所以需要添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
- 编写 Controller 来测试
@RestController
public class CityController {
@RequestMapping(value = "/getCityByName")
public City getCityByName(@RequestParam(value = "cityName") String cityName) {
City city = new City();
city.setName(cityName);
return city;
}
}
City 类就是简单的entity
public class City {
private String name;
private Long id;
// 省略 setter getter
}
测试结果.png
网友评论