本文整理汇总了Java中org.directwebremoting.WebContext.forwardToString方法的典型用法代码示例。如果您正苦于以下问题:Java WebContext.forwardToString方法的具体用法?Java WebContext.forwardToString怎么用?Java WebContext.forwardToString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.directwebremoting.WebContext
的用法示例。
在下文中一共展示了WebContext.forwardToString方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getCharacterizationDetailPage
import org.directwebremoting.WebContext; //导入方法依赖的package包/类
public String getCharacterizationDetailPage(String charType, String charName)
throws ServletException, IOException, BaseException {
try {
WebContext wctx = WebContextFactory.get();
String includePage = InitCharacterizationSetup.getInstance()
.getDetailPage(charType, charName);
if (includePage != null) {
String content = wctx.forwardToString(includePage);
return content;
} else {
return "";
}
} catch (Exception e) {
return "";
}
}
示例2: getSubmitColumnPage
import org.directwebremoting.WebContext; //导入方法依赖的package包/类
public String getSubmitColumnPage(int columnNumber)
throws ServletException, IOException, BaseException {
try {
WebContext wctx = WebContextFactory.get();
String page = "/sample/characterization/shared/bodySubmitDataConditionMatrixColumn.jsp?cInd="
+ columnNumber;
String content = wctx.forwardToString(page);
return content;
} catch (Exception e) {
return "";
}
}
示例3: getEntityIncludePage
import org.directwebremoting.WebContext; //导入方法依赖的package包/类
public String getEntityIncludePage(String entityType, String parent)
throws ServletException, IOException, BaseException {
try {
WebContext wctx = WebContextFactory.get();
String includePage = InitCompositionSetup.getInstance().getDetailPage(entityType, parent);
String content = wctx.forwardToString(includePage);
return content;
} catch (Exception e) {
return "";
}
}
示例4: getInclude
import org.directwebremoting.WebContext; //导入方法依赖的package包/类
@RemoteMethod
public String getInclude(String url) throws ServletException, IOException {
WebContext wctx = WebContextFactory.get();
return wctx.forwardToString(url);
}
示例5: getInclude
import org.directwebremoting.WebContext; //导入方法依赖的package包/类
/**
* Fetch a resource using forwardToString()
* @return a demo HTML page
* @throws ServletException If the servlet engine breaks
* @throws IOException If the servlet engine breaks
*/
public String getInclude() throws ServletException, IOException
{
WebContext wctx = WebContextFactory.get();
return wctx.forwardToString("/simpletext/forward.html");
}
示例6: getInclude
import org.directwebremoting.WebContext; //导入方法依赖的package包/类
/**
* Fetch a resource using forwardToString()
* @return a demo HTML page
* @throws ServletException If the servlet engine breaks
* @throws IOException If the servlet engine breaks
*/
public String getInclude() throws ServletException, IOException
{
WebContext wctx = WebContextFactory.get();
return wctx.forwardToString("/simple/forward.html");
}