PC6下载站

分类分类

JSP取得在WEB.XML中定义的参数

关注+2004-10-07作者:蓝点

在WEB.xml文件中设置参数: 
 
 
 



 
 myjsp  
 /MyJsp.jsp  
 
firstparam 
firstparamvalue 
 
 



 
 myjsp  
 /myurl/*  
 



 



下面的程序无法取出在WEB.XML中定义的参数firstparam的值firstparamvalue 
 
my jsp page .jsp 
My init parameter is <%= application.getInitParameter("firstparam") %> 
 



下面的程序就可以取出在WEB.XML中定义的参数firstparam的值firstparamvalue 
<% 
String Str1; 
Str1=config.getInitParameter("firstparam"); 
Out.println(Str1); 
%> 



因为config是类javax.servlet.ServletConfig的对象,而application 是类 javax.servlet.ServletContext的对象. 
如果指定WebLogic SERVER的侦听端口为80,那么在IE中就不用输入端口 
http://hostname/myfile.html取代http://hostname:portnumber/myfile.html.
展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消