欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ServletContext中常用方法介绍

程序员文章站 2023-12-18 22:44:34
一、.获取tomcat的context的初始化参数。1.获取tomcat的server.xml中设置context的初始化参数。例如:复制代码 代码如下:

一、.获取tomcat的context的初始化参数。
1.获取tomcat的server.xml中设置context的初始化参数。
例如:

复制代码 代码如下:

<context path="/testcontext" docbase="/context"
         privileged="true" antiresourcelocking="false" antijarlocking="false"
         debug="0" reloadable="true">
    <parameter name="name" value="yangqisheng" />
</context>

方式:getservletcontext().getinitparameter(string name)
2.获取在项目下的web.xml中设置context的初始化参数。
例如:
复制代码 代码如下:

<context-param>
    <param-name>age</param-name>
    <param-value>24</param-value>
</context-param>

方式:getservletcontext().getinitparameter(string name)

二、记录tomcat日志
1.设置日志文件
在server.xml文件中,使用logger元素来设置日志文件。

复制代码 代码如下:

<logger classname="org.apache.catalina.logger.filelogger"
        prefix="localhost_log." suffix=".txt" timestamp="true"/>

写日志:this.getservletcontext().log("测试")

三、访问资源文件
3.1 getresource(string parh)方法:其中path必须是/开头,代表当前web应用程序的根目录。返回返回的一个代表某个资源的url对象。
3.2 getresoutceasstream(string parh),返回文件流。这个好处是可以使用相对于根目录的路径访问到web目录下的所有文件,而不必知道绝对路径。
例如在web-inf下新建文件me.properties,内容为:
name=yangqisheng
age=25

复制代码 代码如下:

       this.getservletcontext().getresourceasstream("/web-inf/me.properties");
       properties me = new properties();
       me.load(is);
       out.write(me.getproperty("name"));
       out.write(me.getproperty("age"));

然后在servlet中执行:
将会打印出 yangqisheng25

上一篇:

下一篇: