发新话题
打印

站点发布如何手动设置?

站点发布如何手动设置?

能提供一些手动设置JSP站点,详细地说就是我要发布自己创建的目录,不知我需要改哪些.xml文件,怎么改

TOP

tomcat:  
tomcat\conf\server.xml:  add:  
<Context  path="/test"  docBase="e:\test"  debug="0"  
                                 reloadable="true">  
........  
</Context>  
在e:\下建test目录  
运行:http://localhost:8080/test/*.jsp

TOP

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  服务器配置都差不多

TOP

发新话题