如何清理 RAD 8 的临时文件夹?

发布于 2024-11-24 21:28:13 字数 574 浏览 1 评论 0原文

我收到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满栀 2024-12-01 21:28:13

使用 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.

像你 2024-12-01 21:28:13

在 WAR 模块中,检查:

  • Classpath: 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:

  • Classpath: project/.classpath
  • Deployment assembly: project/.setings/org.eclipse.wst.common.component
  • Bundled dependencies: project/WebContent/WEB-INF/lib

In your EAR, check:

  • Deployment assembly: project/.setings/org.eclipse.wst.common.component
  • Deployment descriptor: project/META-INF/application.xml
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文