org.eclipse.jetty.util.Loader.getClassPath()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(4.2k)|赞(0)|评价(0)|浏览(98)

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

Loader.getClassPath介绍

[英]Generate the classpath (as a string) of all classloaders above the given classloader. This is primarily used for jasper.
[中]生成给定类加载器之上所有类加载器的类路径(作为字符串)。这主要用于jasper。

代码示例

代码示例来源:origin: Nextdoor/bender

setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader().getParent()));

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-webapp

/**
 * @throws Exception
 */
protected void initJspServlet () throws Exception
{
  ContextHandler ch = ((ContextHandler.Context)getServletHandler().getServletContext()).getContextHandler();
  
  /* Set the webapp's classpath for Jasper */
  ch.setAttribute("org.apache.catalina.jsp_classpath", ch.getClassPath());
  /* Set the system classpath for Jasper */
  setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader().getParent())); 
  
  /* Set up other classpath attribute */
  if ("?".equals(getInitParameter("classpath")))
  {
    String classpath = ch.getClassPath();
    LOG.debug("classpath=" + classpath);
    if (classpath != null) 
      setInitParameter("classpath", classpath);
  }
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * @throws Exception
 */
protected void initJspServlet () throws Exception
{
  ContextHandler ch = ContextHandler.getContextHandler(getServletHandler().getServletContext());
    
  /* Set the webapp's classpath for Jasper */
  ch.setAttribute("org.apache.catalina.jsp_classpath", ch.getClassPath());
  /* Set the system classpath for Jasper */
  setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader().getParent()));
  /* Set up other classpath attribute */
  if ("?".equals(getInitParameter("classpath")))
  {
    String classpath = ch.getClassPath();
    LOG.debug("classpath=" + classpath);
    if (classpath != null)
      setInitParameter("classpath", classpath);
  }
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-all-server

/**
 * @throws Exception
 */
protected void initJspServlet () throws Exception
{
  ContextHandler ch = ((ContextHandler.Context)getServletHandler().getServletContext()).getContextHandler();
  
  /* Set the webapp's classpath for Jasper */
  ch.setAttribute("org.apache.catalina.jsp_classpath", ch.getClassPath());
  /* Set the system classpath for Jasper */
  setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader().getParent())); 
  
  /* Set up other classpath attribute */
  if ("?".equals(getInitParameter("classpath")))
  {
    String classpath = ch.getClassPath();
    LOG.debug("classpath=" + classpath);
    if (classpath != null) 
      setInitParameter("classpath", classpath);
  }
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * @throws Exception
 */
protected void initJspServlet () throws Exception
{
  ContextHandler ch = ContextHandler.getContextHandler(getServletHandler().getServletContext());
    
  /* Set the webapp's classpath for Jasper */
  ch.setAttribute("org.apache.catalina.jsp_classpath", ch.getClassPath());
  /* Set the system classpath for Jasper */
  setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader().getParent()));
  /* Set up other classpath attribute */
  if ("?".equals(getInitParameter("classpath")))
  {
    String classpath = ch.getClassPath();
    LOG.debug("classpath=" + classpath);
    if (classpath != null)
      setInitParameter("classpath", classpath);
  }
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-plus

/**
 * @throws Exception
 */
protected void initJspServlet () throws Exception
{
  ContextHandler ch = ((ContextHandler.Context)getServletHandler().getServletContext()).getContextHandler();
  
  /* Set the webapp's classpath for Jasper */
  ch.setAttribute("org.apache.catalina.jsp_classpath", ch.getClassPath());
  /* Set the system classpath for Jasper */
  setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader().getParent())); 
  
  /* Set up other classpath attribute */
  if ("?".equals(getInitParameter("classpath")))
  {
    String classpath = ch.getClassPath();
    LOG.debug("classpath=" + classpath);
    if (classpath != null) 
      setInitParameter("classpath", classpath);
  }
}

相关文章