如何混合弹簧数据存储库和弹簧静止控制器
2022-09-04 03:21:40
目前,我正在通过用@RepositoryRestResource注释它们来公开一些Spring Data存储库作为RESTful服务,如下所示:
@RepositoryRestResource(collectionResourceRel = "thing1", path = "thing1")
public interface Thing1Repository extends PagingAndSortingRepository<Thing1, String> {}
@RepositoryRestResource(collectionResourceRel = "thing2", path = "thing2")
public interface Thing2Repository extends CrudRepository<Thing2, String> {}
这一切都很好。当您点击我的第一个端点时,还会显示我公开的所有Spring数据存储库,如下所示:
{
_links: {
thing1: {
href: "http://localhost:8080/thing1{?page,size,sort}",
templated: true
},
thing2: {
href: "http://localhost:8080/thing2"
}
}
}
现在,我想公开一些无法由Spring Data存储库表示的端点,因此我使用的是RestController。
下面是一个简单的示例:
@RestController
@ExposesResourceFor(Thing3.class)
@RequestMapping("/thing3")
public class Thing3Controller {
@Autowired
EntityLinks entityLinks;
@Autowired
Thing3DAO thing3DAO;
//just assume Thing3.class extends ResourceSupport. I know this is wrong, but it makes the example shorter
@RequestMapping(value = "/{id}", produces = "application/json")
Thing3 thing3(@PathVariable("id") String id)
{
Thing3 thing3 = thing3DAO.findOne(id);
Link link = entityLinks.linkToSingleResource(Thing3.class, id);
thing3.add(link);
return thing3;
}
}
现在,如果我运行此应用程序并转到:
http://localhost:8080/thing3/{id}
我确实得到了Thing3的JSON表示形式,其中包含指向自身的链接,其工作方式按预期进行。
我想弄清楚的是让第一个端点也描述这个控制器。我基本上想要这个:
{
_links: {
thing1: {
href: "http://localhost:8080/thing1{?page,size,sort}",
templated: true
},
thing2: {
href: "http://localhost:8080/thing2"
},
thing3: {
href: "http://localhost:8080/thing3"
}
}
}
我需要执行哪些操作才能使基本终结点具有指向此控制器的链接?