2016-04-12 23:20:05 -05:00
|
|
|
package com.example;
|
|
|
|
|
|
2016-05-12 00:40:29 -05:00
|
|
|
import static org.springframework.hateoas.mvc.ControllerLinkBuilder.linkTo;
|
|
|
|
|
|
2016-04-12 23:20:05 -05:00
|
|
|
import org.springframework.hateoas.ResourceSupport;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
@RestController
|
2016-05-12 00:40:29 -05:00
|
|
|
@RequestMapping("/")
|
2016-04-12 23:20:05 -05:00
|
|
|
public class IndexController {
|
|
|
|
|
|
2016-07-26 11:34:56 +03:00
|
|
|
@RequestMapping(method = RequestMethod.GET)
|
|
|
|
|
public ResourceSupport index() {
|
|
|
|
|
ResourceSupport index = new ResourceSupport();
|
|
|
|
|
index.add(linkTo(CRUDController.class).withRel("crud"));
|
|
|
|
|
return index;
|
|
|
|
|
}
|
2016-04-12 23:20:05 -05:00
|
|
|
|
|
|
|
|
}
|