A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

15黑马币
最好用例子说明.

最佳答案

查看完整内容

/[1]获取servlet的配置 参数的实例 2. ServletConfig servletConfig = getServletConfig(); 3. 4. //[2]获取servlet的名字 5. String servletName = servletConfig.getServletName(); 6. System.out.println("servletName:"+servletName); 7. //[3]获取servletcontext对象 (代表当前的web应用) 8. 9. //[4]有些数据 不适合在程序中写死 比如(jdbc 连接mysql的用户名和密码 ) 把这样的数据写到配置文件中 10. String ...

1 个回复

倒序浏览
/[1]获取servlet的配置 参数的实例
2.                ServletConfig servletConfig = getServletConfig();
3.               
4.                //[2]获取servlet的名字
5.                String servletName = servletConfig.getServletName();
6.                System.out.println("servletName:"+servletName);
7.                //[3]获取servletcontext对象 (代表当前的web应用)
8.               
9.                //[4]有些数据 不适合在程序中写死 比如(jdbc 连接mysql的用户名和密码 ) 把这样的数据写到配置文件中
10.                String  username= getServletConfig().getInitParameter("username");
11.                System.out.println("username"+username);
[1]获取servlet的配置 参数的实例  代表当前的web应用
2.                ServletContext servletContext = getServletContext();
3.       
4.                //[2]有些数据不适合在程序中写死  这个数据是共有的    全局的
5.                String name = servletContext.getInitParameter("name");
6.                System.out.println("name:"+name);
7.                //[3]拿到当前web应用可以实现数据的共享  
8.                servletContext.setAttribute("itheima", "黑马程序员");
9.               
10.                //[4]获取项目中的真实路径   
11.                String realPath = servletContext.getRealPath("aa");
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马