Tomcat 类路径
当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编辑 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.