Tomcat 类路径

发布于 2024-09-12 18:21:19 字数 564 浏览 4 评论 0原文

当我在 tomcat 中运行以下 jsp 时...

<html> 
   <head> 
      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <title>Insert title here</title>
   </head> 
   <body> Before:cp=<%=System.getProperty("java.class.path")%> 
   </body> 
</html> 

我得到此输出...

之前:cp=C:\apache-tomcat-6.0.24\bin\bootstrap.jar;C:\Program Files\Java\jdk1。 6.0_19\lib\tools.jar

我怎样才能让 C:\Myfolder\project 出现在这里...?我如何将此文件夹设置为我的 tomcat6 类路径..

Kaddy

when i run the following jsp in my tomcat...

<html> 
   <head> 
      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <title>Insert title here</title>
   </head> 
   <body> Before:cp=<%=System.getProperty("java.class.path")%> 
   </body> 
</html> 

i get this output...

Before:cp=C:\apache-tomcat-6.0.24\bin\bootstrap.jar;C:\Program Files\Java\jdk1.6.0_19\lib\tools.jar

How can i make C:\Myfolder\project appear here...?How do i set this folder to my tomcat6 class path..

Kaddy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

哥,最终变帅啦 2024-09-19 18:21:19

您可以编辑 catalina.bat(或 .sh)来执行此操作。但是,如果您只想将一些 jar 放在类路径上,请将它们放入 \lib

编辑:
最好的方法不是编辑 catalina.bat 本身,而是在旁边创建 setenv.bat 并对您需要的 CLASSPATH 变量进行所有更改。

You can edit catalina.bat (or .sh) to do that. But if you want to simply put some jars on the classpath, put them to \lib

Edit:
The best way to do it is not to edit catalina.bat itself, but to create setenv.bat next to is and make all the changes to CLASSPATH variable you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文