给一个资源类,它有一个方法,它返回一个 Viewable(或通常任何 jsp 页面)。有没有办法使用 c:import 或 jsp:include taglib 来包含来自 jaxrs 注释类的 Viewable 响应?例如给定类
@Path("/some/path")
public class SomeJaxrsResource {
@GET
public Viewable get() {
return new Viewable("/the/path/to/the/jsp", this)
}
}
有没有办法将它的计算 html 包含在一个 jsp 中
<c:import url="/some/path" />
或一个
<jsp:include page="/some/path" />