作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当使用Spring的HATEOAS支持时,我真的很喜欢AnnotationMappingDiscoverer
这有助于避免在测试中硬编码 REST 资源路径。有了它,我可以做类似的事情
discoverer = new AnnotationMappingDiscoverer(RequestMapping.class);
Method method = MyController.class.getMethod("myResourceMethod", params);
String path = discoverer.getMapping(method);
然后使用该路径
作为测试中的资源路径。比测试中必须与 Controller 类和方法注释保持同步的硬编码路径要好得多。
RESTEasy 有类似的东西吗?
最佳答案
您可以使用UriBuilder :
假设以下类(class):
@Path("persons")
public class PersonResource {
@Path("/{id}")
public Response get(@PathParam("id") String id) {
//
}
}
你会得到这样的路径:
URI path = UriBuilder.fromResource(PersonResource.class)
.path(PersonResource.class, "get")
.build("4711");
// path = /persons/4711
关于java - 有没有类似 spring-hateoas 的 AnnotationMappingDiscoverer for RESTEasy 的东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33041944/
当使用Spring的HATEOAS支持时,我真的很喜欢AnnotationMappingDiscoverer这有助于避免在测试中硬编码 REST 资源路径。有了它,我可以做类似的事情 discover
我是一名优秀的程序员,十分优秀!