org.apache.wicket.Request.getPage()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(256)

本文整理了Java中org.apache.wicket.Request.getPage方法的一些代码示例,展示了Request.getPage的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getPage方法的具体详情如下:
包路径:org.apache.wicket.Request
类名称:Request
方法名:getPage

Request.getPage介绍

暂无

代码示例

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

  1. /**
  2. * Redirects to intercept page using the page map for the current request
  3. *
  4. * @param interceptPage
  5. * The intercept page to redirect to
  6. */
  7. private void redirectToInterceptPage(final Page interceptPage)
  8. {
  9. final Page requestPage = RequestCycle.get().getRequest().getPage();
  10. /*
  11. * requestPage can be null if we throw the restart response exception before any page is
  12. * instantiated in user's session. if this happens we switch to the pagemap of the
  13. * interceptPage
  14. */
  15. final IPageMap pageMap;
  16. if (requestPage != null)
  17. {
  18. pageMap = requestPage.getPageMap();
  19. }
  20. else
  21. {
  22. pageMap = interceptPage.getPageMap();
  23. }
  24. pageMap.redirectToInterceptPage(interceptPage);
  25. }

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

  1. /**
  2. * Redirects to intercept page using the page map for the current request
  3. *
  4. * @param interceptPage
  5. * The intercept page to redirect to
  6. */
  7. private void redirectToInterceptPage(final Page interceptPage)
  8. {
  9. final Page requestPage = RequestCycle.get().getRequest().getPage();
  10. /*
  11. * requestPage can be null if we throw the restart response exception before any page is
  12. * instantiated in user's session. if this happens we switch to the pagemap of the
  13. * interceptPage
  14. */
  15. final IPageMap pageMap;
  16. if (requestPage != null)
  17. {
  18. pageMap = requestPage.getPageMap();
  19. }
  20. else
  21. {
  22. pageMap = interceptPage.getPageMap();
  23. }
  24. pageMap.redirectToInterceptPage(interceptPage);
  25. }

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

  1. /**
  2. * Redirects to intercept page using the page map for the current request
  3. *
  4. * @param interceptPageClass
  5. * The intercept page class to redirect to
  6. */
  7. private void redirectToInterceptPage(final Class interceptPageClass)
  8. {
  9. final RequestCycle cycle = RequestCycle.get();
  10. final Page requestPage = cycle.getRequest().getPage();
  11. /*
  12. * requestPage can be null if we throw the restart response exception before any page is
  13. * instantiated in user's session. if this happens we switch to the pagemap of the request.
  14. */
  15. final IPageMap pageMap;
  16. if (requestPage != null)
  17. {
  18. pageMap = requestPage.getPageMap();
  19. }
  20. else
  21. {
  22. RequestParameters parameters = cycle.getRequest().getRequestParameters();
  23. pageMap = PageMap.forName(parameters.getPageMapName());
  24. }
  25. pageMap.redirectToInterceptPage(interceptPageClass);
  26. }
  27. }

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

  1. final Page requestPage = cycle.getRequest().getPage();

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

  1. private void setUpRedirect(final RequestCycle cycle)
  2. {
  3. Session session = Session.get();
  4. if (session.isTemporary())
  5. {
  6. session.bind();
  7. }
  8. // The intercept continuation URL should be saved exactly as the
  9. // original request specified.
  10. // Only if it is an ajax request just redirect to the page where the request is from.
  11. if (cycle.getRequest() instanceof WebRequest && ((WebRequest)cycle.getRequest()).isAjax())
  12. {
  13. interceptContinuationURL = cycle.urlFor(cycle.getRequest().getPage()).toString();
  14. }
  15. else
  16. {
  17. interceptContinuationURL = "/" + cycle.getRequest().getURL();
  18. }
  19. // Page map is dirty
  20. dirty();
  21. // Redirect to the page
  22. cycle.setRedirect(true);
  23. }

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

  1. private void setUpRedirect(final RequestCycle cycle)
  2. {
  3. Session session = Session.get();
  4. if (session.isTemporary())
  5. {
  6. session.bind();
  7. }
  8. // The intercept continuation URL should be saved exactly as the
  9. // original request specified.
  10. // Only if it is an ajax request just redirect to the page where the request is from.
  11. if (cycle.getRequest() instanceof WebRequest && ((WebRequest)cycle.getRequest()).isAjax())
  12. {
  13. interceptContinuationURL = cycle.urlFor(cycle.getRequest().getPage()).toString();
  14. }
  15. else
  16. {
  17. // wicket-2061: getURL() returns a properly <b>decoded</b> URL. But we need is a
  18. // properly <b>encoded</b> URL.
  19. interceptContinuationURL = "/" + cycle.getRequest().getURL();
  20. interceptContinuationURL = WicketURLEncoder.FULL_PATH_INSTANCE.encode(interceptContinuationURL);
  21. }
  22. // Page map is dirty
  23. dirty();
  24. // Redirect to the page
  25. cycle.setRedirect(true);
  26. }

相关文章