jsp服务器配置
能不能在局域网内通过输入服务器的ip地址访问   jsp程序。 
 求助   给个意见
------解决方案--------------------首先你要有个服务器对不,例如是TOMCAT 
 1.%TOMCAT%\conf\server.xml文件中增加 
  <Context path= " " docBase= "myweb " debug= "0 " reloadable= "true ">  </Context>  
 myweb说明其相对webapps的位置,是物理存在的目录; 
 path说明其相对web URL的路径,是一个虚拟的路径,如:http://IP:8080/   
 当然最方便的就是直接放在webapps的root文件夹下,那么就不用配置了   
 2 配置服务器的端口 
 在server.xml文件的,看到port = “8080” 把他修改为80,这样你直接http://IP就可以访问了,因为默认端口号80可以省略   
 3.3 web.xml文件的设置 
 默认(欢迎)文件的设置 
 在%TOMCAT%\conf\web.xml中, <welcome-file-list> 与IIS中的默认文件意思相同。 
  <welcome-file-list>   
  <welcome-file> index.jsp </welcome-file>  
  </welcome-file-list>  
 index.jsp即你的首页   
 如果是其他服务器,道理是相似的