java - spring boot 入门

    1. 在 http://start.spring.io/ 中选择基础项目下载下来
      此处选择的 marven 项目
      java - spring boot 入门_第1张图片
      选择基础项目.png
    1. 导入工程
    • a. 菜单中选择File–>New–>Project from Existing Sources...
    • b. 选择解压后的项目文件夹,点击OK
    • c. 点击Import project from external model并选择Maven,点击Next到底为止。
    1. 这时候的工程可能是还没有 start-web 依赖的,所以需要添加依赖

  org.springframework.boot
  spring-boot-starter-web

    1. 编写 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 
}
    1. 浏览器中测试
      http://localhost:8080/getCityByName?cityName=海口
java - spring boot 入门_第2张图片
测试结果.png

参考:
http://blog.didispace.com/spring-boot-learning-1/

你可能感兴趣的:(java - spring boot 入门)