liujiyangGhost 2006-3-17 16:56
站点发布如何手动设置?
能提供一些手动设置JSP站点,详细地说就是我要发布自己创建的目录,不知我需要改哪些.xml文件,怎么改
卡希 2006-3-17 16:56
tomcat:
tomcat\conf\server.xml: add:
<Context path="/test" docBase="e:\test" debug="0"
reloadable="true">
........
</Context>
在e:\下建test目录
运行:[url]http://localhost:8080/test/[/url]*.jsp
feitianmao 2006-3-17 16:57
jwsdp:
jwsdp\conf\server.xml
在
<Host name="localhost" appBase="webapps" debug="0" unpackWARs="false">
<!-- Insert <Context> Elements Here As Needed -->
添加下面:
<Context path="/demo" docBase="e:\demo" debug="0" reloadable="true">
</Context>
</Host>
web 服务器配置都差不多