我想找到一个解决方案,为同一资源使用2条路线。
例如,我是一个资源CustomerResource,我想在“/ customer”和“/ customer /”中使用相同的资源,并添加一个尾部斜杠。
你对此有什么建议吗?
此致
编辑:我重写SpringBeanRouter以使用和不使用尾部斜杠路径发布资源:
public class MySpringBeanRouter extends SpringBeanRouter {
@Override
public TemplateRoute attach(String pathTemplate, Restlet target) {
if(pathTemplate != null && pathTemplate.endsWith("/"))
super.attach(pathTemplate.substring(0, pathTemplate.length() - 1), target);
return super.attach(pathTemplate, target);
}
}
答案 0 :(得分:1)
可以在两个不同的路径下附加相同的资源类:
router.attach(“/ customer”,CustomerServerResource.class);
router.attach(“/ customer /”,CustomerServerResource.class);