Spring Boot Restful框架搭建和使用【持续更新中】

1 Spring Boot Restful框架搭建

     项目源码地址

2 SpringBoot框架使用技巧记录

    2.1 pageable的使用

    Controller类中方法参数Pageable的传参数

@RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public PagedResources<Resource> list(@AuthenticationPrincipal User user, 
        Pageable pageable,PagedResourcesAssembler<Resource> assembler) {
     ...........
}

对应上面的这样的方法,要传入分页排序参数如下示例:
http://localhost:8080/list?page=0&size=2&sort=price,desc



   




你可能感兴趣的:(jpa,OAuth,springboot)