5

我正在使用 war 文件在 Tomcat 6 上部署应用程序。我已经在同一台机器上编译了供应商提供的源代码,然后将 war 文件移动到 {tomcat-home}/webapps/

当我启动应用程序时,我看到一条错误消息:

The SystemInformationService could not be retrieved from the container. Therefore very limited information is available in this error report. 
The SystemInformationService could not be retrieved due to the following error: java.lang.IllegalStateException: Spring Application context has not been set
Cause
java.lang.RuntimeException: Unable to instantiate VelocityEngine!
    at com.opensymphony.webwork.views.velocity.VelocityManager.newVelocityEngine(VelocityManager.java:333)

Stack Trace:[hide]

java.lang.RuntimeException: Unable to instantiate VelocityEngine!
 at com.opensymphony.webwork.views.velocity.VelocityManager.newVelocityEngine(VelocityManager.java:333)
 at com.opensymphony.webwork.views.velocity.VelocityManager.init(VelocityManager.java:146)
 at com.opensymphony.webwork.dispatcher.VelocityResult.doExecute(VelocityResult.java:61)

我在另一台机器上执行了相同的步骤,并且安装正确。

我不明白错误告诉我什么。

我会丢失 jar 文件吗?(但它编译得很好)。

我忘记设置环境变量了吗?

我不知道该怎么做,我不知道 VelocityEngine 是什么,或者做什么。

4

1 回答 1

3

这可能是因为 Velocity 的日志记录试图记录到只读文件夹,甚至是 jar 文件。

* create a file "velocity.properties" and place it in the WEB-INF/classes folder.
* Inside the file, write

runtime.log.logsystem.class=org.apache.velocity.runtime.log.NullLogSystem

(原文见这里)

于 2010-04-27T09:33:20.457 回答