如何清理 RAD 8 的临时文件夹?
我收到 javax.servlet.UnavailableException: (SRVE0203E)。据我所知,这意味着并非我在类路径中使用 RAD 编译的所有库都存在于运行时类路径中。日志文件中的错误消息输出运行时类路径,当我将其与编译类路径进行比较时,我找不到丢失的库。唯一的区别是运行时类路径包含 2 个旧库,我上周从系统中删除了它们。它们位于新版本之前,这意味着集成应用程序服务器会尝试使用它们。
例如:
class-path: [C:\workspace\MYEAR\commons-beanutils-1.7.0.jar;
C:\workspace\MYEAR\commons-beanutils-1.8.3.jar;
C:\workspace\MYEAR\commons-collections-3.1.jar;
C:\workspace\MYEAR\commons-collections-3.2.1.jar;...................]
如何删除那些旧的引用?它们可能是在临时文件夹中某处的文件中定义的...这就是为什么我想删除所有 RAD 8 临时文件夹。
任何帮助表示赞赏!
谢谢!
I am receiving the javax.servlet.UnavailableException: (SRVE0203E). As far as I know, this means that not all libraries that I use in the classpath for compiling with RAD are present in the runtime classpath. The error message from the log file outputs the runtime classpath and when I compare it with my compile classpath I can't find missing libraries. The only difference is that the runtime classpath contains 2 old libraries, which I deleted last week from my system. They are before the new versions, which means, that the integrated app server tries to use them.
For example:
class-path: [C:\workspace\MYEAR\commons-beanutils-1.7.0.jar;
C:\workspace\MYEAR\commons-beanutils-1.8.3.jar;
C:\workspace\MYEAR\commons-collections-3.1.jar;
C:\workspace\MYEAR\commons-collections-3.2.1.jar;...................]
How can I delete those old references? They are perhaps defined in a file somewhere in a temp folder... That's why I'd like to delete all RAD 8 temp folders.
Any help is appreciated!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 clean 选项启动 RAD。
当然,我假设您现在拥有正确的类路径和库。
因此,转到包含 eclipse.exe 的 IBM 安装目录
,并在命令提示符中键入:
eclipse.exe -clean
这可能需要一些时间来启动,但它很可能会解决您的问题。
Start the RAD with clean option.
Ofcourse I assume that you have the correct class paths and libraries now.
So go to the IBM install directory that has a eclipse.exe
and type this in command prompt:
eclipse.exe -clean
this should take some time in starting up but it will mostlikely solve your problem.
在 WAR 模块中,检查:
project/.classpath
project/.setings/org.eclipse.wst.common.component
project/WebContent/WEB-INF/lib
在您的 EAR 中,检查:
project/.setings/org.eclipse.wst.common.component
项目/META-INF/application.xml
In your WAR modules, check:
project/.classpath
project/.setings/org.eclipse.wst.common.component
project/WebContent/WEB-INF/lib
In your EAR, check:
project/.setings/org.eclipse.wst.common.component
project/META-INF/application.xml