ServletContext(Servlet上下文对象)作用 生命周期
ServletContext(Servlet上下文对象)容器提供的对象作用:1.相对路径转换为绝对路径String path = "/mp3/1.jpg";ServletContext ctx = getServletContext();String realPath = ctx.getRealPath(path);File file = new Fil
·
ServletContext(Servlet上下文对象)
String path = "/mp3/1.jpg";
ServletContext ctx = getServletContext();
String realPath = ctx.getRealPath(path);
File file = new File(realPath);
2.可以获取容器的附加信息。
容器名称
容器版本
Servlet规范的版本号
3.全局容器
ServletContext ctx = getServletContext();
User user = new User();
String str = "";
int i=100;
ctx.setAttribute("a1",user);
ctx.setAttribute("a2",str);
ctx.setAttribute("a3",i);
User user = (User)ctx.getAttribute("a1");
ServletContext生命周期,容器启动时自动创建该对象,容器关闭时容器销毁该对象。
做什么工作?
不放业务数据。
1,系统的配置信息。如:
数据库的用户名和密码。上传文件的路径。
2,读取web.xml配置文件中关于servlet初始化参数的方法:
ServletConfig config = getServletConfig();
String value = config.getInitParameter("key");
练习1:
修改昨天的下文件代码,改成相对路径方式。
练习2:
编写一个自启动Servlet,读取Properties文件中的配置信息,并放到全局容器中。编写一个测试Servlet来读取全局容器中的配置信息。
练习3:
编写一个Servlet,客户端访问这个Servlet的时候得到一个excel表格。使用字符流的方式完成。
容器提供的对象
作用:
String path = "/mp3/1.jpg";
ServletContext ctx = getServletContext();
String realPath = ctx.getRealPath(path);
File file = new File(realPath);
2.可以获取容器的附加信息。
容器名称
容器版本
Servlet规范的版本号
3.全局容器
ServletContext ctx = getServletContext();
User user = new User();
String str = "";
int i=100;
ctx.setAttribute("a1",user);
ctx.setAttribute("a2",str);
ctx.setAttribute("a3",i);
User user = (User)ctx.getAttribute("a1");
ServletContext生命周期,容器启动时自动创建该对象,容器关闭时容器销毁该对象。
做什么工作?
不放业务数据。
1,系统的配置信息。如:
数据库的用户名和密码。上传文件的路径。
2,读取web.xml配置文件中关于servlet初始化参数的方法:
ServletConfig config = getServletConfig();
String value = config.getInitParameter("key");
练习1:
修改昨天的下文件代码,改成相对路径方式。
练习2:
编写一个自启动Servlet,读取Properties文件中的配置信息,并放到全局容器中。编写一个测试Servlet来读取全局容器中的配置信息。
练习3:
编写一个Servlet,客户端访问这个Servlet的时候得到一个excel表格。使用字符流的方式完成。
更多推荐
已为社区贡献1条内容
所有评论(0)