- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经通读了所有现有的答案,但仍然无法解决我的问题。
我如何启动服务器:
alias run-server='cd /Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery/; java -Dgcs.log.dir=/Users/usingji/mediaServer/log -Dgcs.home.dir=/Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery -jar GCS-v0.9.jar'
我的错误:
0:36:45,083 INFO [PropertyUtil] Loading Property file
10:36:45,084 INFO [PropertyUtil] Loading Property file
10:36:45,085 INFO [ServerLauncher] webPort is 8080
10:36:45,085 INFO [ServerLauncher] web root is webapp
10:36:45,091 INFO [ServerLauncher] base path: /Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery
10:36:45,092 INFO [ServerLauncher] just set the port
10:36:45,092 INFO [ServerLauncher] config name: webapp
10:36:45,092 INFO [ServerLauncher] file: ackack: /Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery/webapp
10:36:45,092 INFO [ServerLauncher] absolute path: /Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery/webapp
10:36:45,175 INFO [ServerLauncher] configuring app with basedir: /Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery/webapp
Jan 22, 2014 10:36:45 AM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-bio-8080"]
Jan 22, 2014 10:36:45 AM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Tomcat
Jan 22, 2014 10:36:45 AM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.34
Jan 22, 2014 10:36:45 AM org.apache.catalina.startup.ContextConfig getDefaultWebXmlFragment
INFO: No global web.xml found
Jan 22, 2014 10:36:46 AM org.apache.catalina.core.StandardContext resourcesStart
SEVERE: Error starting static Resources
java.lang.IllegalArgumentException: Document base /Users/usingji/Code/sandbox/gcs/target/GlobalContentDelivery-Package/GlobalContentDelivery/webapp does not exist or is not a readable directory
at org.apache.naming.resources.FileDirContext.setDocBase(FileDirContext.java:138)
at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:4906)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5086)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1559)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1549)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:724)
Jan 22, 2014 10:36:46 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: Error in resourceStart()
Jan 22, 2014 10:36:46 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: Error getConfigured
Jan 22, 2014 10:36:46 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: Context [/] startup failed due to previous errors
Jan 22, 2014 10:36:46 AM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-bio-8080"]
10:36:46,227 INFO [ServerLauncher] Starting Tomcast ...
webapp 目录确实存在:
drwxr-xr-x 6 usingji PEROOT\Domain Users 204 Jan 22 10:34 webapp
启动tomcat实例的代码:
public static void main(String[] args) throws Exception {
// load all the default configs files
loadDefaults();
// // port number
String webPort;
webPort = System.getProperty("gcs.web.port");
if (webPort == null) {
webPort = System.getenv("gcs.web.port");
}
if (webPort == null) {
webPort = PropertyUtil.getValue(Constants.PORT_CONFIG_NAME);
}
log.info("webPort is " + webPort);
String webappDirLocation = PropertyUtil.getValue(Constants.WEBAPP_CONFIG_NAME);
log.info("web root is " + webappDirLocation);
tomcat = new Tomcat();
String basePath = FileUtil.getBasePath();
log.info("base path: " + basePath);
tomcat.setBaseDir(basePath);
tomcat.setPort(Integer.valueOf(webPort));
log.info("just set the port");
String configName= PropertyUtil.getValue(Constants.WEBAPP_CONFIG_NAME);
log.info("config name: "+ configName);
File ackack = new File(basePath,configName);
log.info("file: ackack: " + ackack);
String absPath = ackack.getAbsolutePath();
log.info("absolute path: " + absPath);
StandardContext ctx = (StandardContext) tomcat.addWebapp(
"/",
absPath);
ctx.setDefaultWebXml(new File(webappDirLocation).getAbsolutePath()
+ "/WEB-INF/web.xml");
// unzip folder location
tomcat.addWebapp(PropertyUtil.getValue(Constants.EXPORT_URL_PATH),
PropertyUtil.getValue(Constants.PXE_UNZIP_FOLDER));
log.info("configuring app with basedir: "
+ new File(webappDirLocation).getAbsolutePath());
tomcat.start();
log.info("Starting Tomcast ...");
tomcat.getServer().await();
}
最佳答案
事实证明,具有文件夹 (webapp) 链接的配置文件在文件名后有一个空格或一个不可见的控制字符。
我通过以下方式发现了这一点:
如此令人沮丧和阴险!我很高兴现在已经解决并完成了!
关于java - tomcat 启动失败 : SEVERE: Error starting static Resources,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21287440/
我是 F# 的菜鸟,目前正在阅读 F# 3.0 中的专家。 它是我学习的第一种编译语言(我只知道用 R 编程) 在第 6 章第 117 页,我们没有太多仪式性地介绍 静态让和静态成员。我真的不明白它是
我很迷茫。我已经花几个小时广泛地复习了我的两个类(class)。没有什么是静态的,没有什么是静态引用的,但我无法摆脱这个错误。 A 类文件 (ClassA.php) privateVariable =
关于类公共(public)类声明,请看这两段代码: public class Helper { public static void CallMeganFox(string phoneNumb
我如何使用“super”关键字从父类(super class)(类“aa”)引用“a1” class aa { protected static int a1 = 2; } public class
class Perkusja { boolean talerze = true; boolean beben = true; void zagrajNaBebnie() { Sys
我试图在编译 C++ 程序时静态链接库。 g++ (GCC) 4.8.5 20150623(红帽 4.8.5-4) $ g++ -std=c++11 -I/home/jerry/Desktop/tin
$ javac TestFilter.java TestFilter.java:19: non-static variable this cannot be referenced from a sta
这个问题在这里已经有了答案: How do I create a global, mutable singleton? (7 个答案) How can you make a safe static
“覆盖”静态数组时我遇到了一个棘手的问题。我有静态数组(为简单起见),它们在不同的派生类中具有固定长度,但在编译时仍然知道所有大小。我在基类中也有一个虚函数,但我不知道如何解决在派生类中覆盖这些数组和
我刚刚在遗留代码中发现了这一点。我知道使用宏,每当使用名称时,它都会被宏的内容替换。它们最常用于为数字常量提供符号名称。我所知道的是预处理没有类型安全、范围的概念。 这样做的真正好处是什么? #def
将 Singleton 实例声明为 static 还是声明为 static final 更好? 请看下面的例子: 静态版本 public class Singleton { private s
问题: 我观察到的行为是 TypeScript 的预期行为吗? 我观察到的行为是 ECMAScript 6 的预期行为吗? 是否有一种简单的方法可以返回继承层次结构以处理每个级别的“myStatic”
在php中,访问类的方法/变量有两种方法: 1. 创建对象$object = new Class(),然后使用”->”调用:$object->attribute/functi
我尝试向 ExpandoObject 添加一个动态方法,该方法会返回属性(动态添加)给它,但它总是给我错误。 我在这里做错了吗? using System; using System.Collecti
我试图获得一个静态链接到我的程序的音频库。我用 this灵活的包。为了让它运行,我必须按照描述构建 soloud 库 here .下载后不久,我在“build”文件夹中运行了“genie --with
这是我的webpack.prod.config.js代码 const path = require('path'); const { CleanWebpackPlugin } = require('c
我想知道什么时候应该对变量和(或)方法使用静态、最终、静态最终参数。据我了解: final:类似于c++中的const参数。它基本上意味着值(或在方法中 - 返回值)不会改变。 静态:这意味着值(或方
我一直在阅读有关使用静态对象作为锁的内容,最常见的示例如下: public class MyClass1 { private static final Object lock = new Obje
在 Visual Basic 2008 中,我知道有两种不同的方法可以完成同一件事: 成员(member)级别的 Dim: Dim counter1 as integer = 0 Dim counte
static public final int i = 0; public static final int i = 0; 两者都工作正常。 为什么同样的事情可以用两种不同的风格来完成? 最佳答案 因
我是一名优秀的程序员,十分优秀!