org.apache.jasper.Options.getClassPath()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(122)

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

Options.getClassPath介绍

[英]What classpath should I use while compiling the servlets generated from JSP files?
[中]编译从JSP文件生成的servlet时应该使用什么类路径?

代码示例

代码示例来源:origin: com.github.lkoskela.jsptest/jsptest-jsp20

public String getClassPath() {
  return options.getClassPath();
}

代码示例来源:origin: net.sf.jsptest/jsptest-jsp20

public String getClassPath() {
  return options.getClassPath();
}

代码示例来源:origin: org.glassfish.web/jsp-impl

cp = options.getClassPath();

代码示例来源:origin: org.eclipse.jetty.toolchain/jetty-jsp-fragment

cp = options.getClassPath();

代码示例来源:origin: org.eclipse.jetty.orbit/org.apache.jasper.glassfish

cp = options.getClassPath();

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp

cp = options.getClassPath();

代码示例来源:origin: org.glassfish.web/jakarta.servlet.jsp

cp = options.getClassPath();

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.jasper.glassfish

cp = options.getClassPath();

代码示例来源:origin: org.apache.geronimo.ext.tomcat/jasper

cp = options.getClassPath();

代码示例来源:origin: jboss.web/jbossweb

cp = options.getClassPath();

代码示例来源:origin: org.bluestemsoftware.open.maven.tparty/jsp-2.1

cp = options.getClassPath();

代码示例来源:origin: org.jboss.web/jbossweb

/**
 * Method used to initialize classpath for compiles.
 */
private void initClassPath() {
  if (!(parentClassLoader instanceof URLClassLoader)) {
    return;
  }
  
  URL [] urls = ((URLClassLoader) parentClassLoader).getURLs();
  StringBuilder cpath = new StringBuilder();
  String sep = System.getProperty("path.separator");
  for(int i = 0; i < urls.length; i++) {
    // Tomcat 4 can use URL's other than file URL's,
    // a protocol other than file: will generate a
    // bad file system path, so only add file:
    // protocol URL's to the classpath.
    
    if( urls[i].getProtocol().equals("file") ) {
      cpath.append((String)urls[i].getFile()+sep);
    }
  }    
cpath.append(options.getScratchDir() + sep);
  String cp = (String) context.getAttribute(Constants.SERVLET_CLASSPATH);
  if (cp == null || cp.equals("")) {
    cp = options.getClassPath();
  }
  classpath = cpath.toString() + cp;
  JasperLogger.COMPILER_LOGGER.logCompilationClasspath(getClassPath());
}

代码示例来源:origin: codefollower/Tomcat-Research

cp = options.getClassPath();

代码示例来源:origin: io.undertow.jastow/jastow

cp = options.getClassPath();

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

cp = options.getClassPath();

代码示例来源:origin: org.apache.tomcat/tomcat-jasper

cp = options.getClassPath();

相关文章

微信公众号

最新文章

更多