select context and config
Posted lastingjava
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了select context and config相关的知识,希望对你有一定的参考价值。
@Override
public void service(HttpServletRequest request,HttpServletResponse response){
//获取servletContext对象,写入数据,servletContext对象由服务器创建
生命周期:服器启动到关闭
ServletContext sc=this.getServletContext();//获取ServletContext对象
sc.setAttribute("uname", "javaee");//写入数据
@Override
public void service(HttpServletRequest request,HttpServletResponse response) {
ServletContext sc=this.getServletContext();//获取对象 数据。
String uname=(String) sc.getAttribute("uname");
System.out.println(uname);
}
@Override
public void service(HttpServletRequest request,HttpServletResponse response)
//获取ServletConfig对象,获取Servlet的私有配置属性
ServletConfig config=this.getServletConfig();
String value=config.getInitParameter("charset");
System.out.println(value);
}
//配置如下,使用<init-param>
<servlet>
<servlet-name>servlet11</servlet-name>
<servlet-class>com.j2ee.ConfigServlet</servlet-class>
<init-param>
<param-name>charset</param-name>
<param-value>utf-8</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>servlet11</servlet-name>
<url-pattern>/config</url-pattern>
</servlet-mapping>
以上是关于select context and config的主要内容,如果未能解决你的问题,请参考以下文章
解密:通配符的匹配很全面, 但无法找到元素 ‘context:annotation-config‘ 的声明
解密:通配符的匹配很全面, 但无法找到元素 ‘context:annotation-config‘ 的声明
解密:通配符的匹配很全面, 但无法找到元素 ‘context:annotation-config‘ 的声明
servlet context 和 servlet config
EF How to use context.Set and context.Entry, which ships with EF4.1 ?