本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
最新文章列表
Tomcat中Context元素详解(转)
Context元素代表一个web应用,运行在某个特定的虚拟主机上。
如Servlet Specification 2.2或以后版本中描述的那样,每个web应用基于一个Web Application Archive(WAR)文件,或者是一个目录,包含WAR文件解压后的内容。有关Web
Application Archive的更多信息,可以参考Servlet Specificatio ...
关于Service的使用
Service是android 系统中的一种组件,它跟Activity的级别差不多,但是他不能自己运行,只能后台运行,并且可以和其他组件进行交互。Service的启动有两种方式:context.startService() 和 context.bindService()。
使用context.startService() 启动Service是会会经历:
context.startService( ...
web.xml中通过contextConfigLocation的读取spring的配置文件
公司的考勤系统程序,有5个spring配置文件:bean-edu.xml,bean-pub.xml,db-edu.xml,db-pub.xml,timer-system.xml,均放置于src目录下,在web.xml中配置这些文件的代码如下:
<context-param>
<param-name>contextConfigLocation</param-na ...
Introduction to Context Handling in Message Mapping
转自:http://www.riyaz.net/sap/xipi-introduction-to-context-handling-in-message-mapping/5/
Context handling is an important technique to map complex scenarios in XI. This article introduces the basics of ...
Spring加载多个配置文件
首先我们都知道要使用spring,则需要在web.xml中增加如下代码:
Xml代码
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> spring是如何加载配置文件肯 ...
web.xml配置context-param
发现某学生在web.xml配置
<context-param>
<param-name>dirver</param-name>
<param-value>com.mysql.jdbc.Driver</param-value>
</context-param>
<context-param>
...
listenner
public class WebServerListener implements ServletContextListener{
private ServletContext context = null;
public void contextInitialized(ServletContextEvent event)
{
...
减少tomcat重启
在开发web 系统时,测试中经常修改源文件,过后要重新启动tomcat才能生效,很浪费时间.可以把项目添加到Context,就能实现热布署了.
如:
<Host name="www.test.com" appBase=""
unpackWARs="true" autoDeploy="true&quo ...
tomcat的Context属性
Context的实现支持如下属性:
属性 描述
backgroundProcessorDelay 这个值代表在context及其子容器(包括所有的wrappers)上调用backgroundProcess方法的延时,以秒为单位。如果延时值非负,子容器不会被调用,也就是说子容器使用自己的处理线程。如果该值为正,会创建一个新的线程。在等待指定的时间以后,该线程在主机及其 子容器上调用background ...
Android 中Locale,auto-rotate状态的获取
1. 得到当前locale:
Context.getResources().getConfiguration.locale;
2. 是否开启了auto-rotate:(这个和具体设备似乎也有关系,不确定是否通用)
import android.provider.Settings;
mAutoRotateSwitch = (Settings.System.getInt(this.getCont ...
struts2获取request,session,application
获取request、session的方法
2.1 与servlet无关:
2.1.1 非IoC模式
Java代码
ActionContext context ;//该方法还可以取得值栈(getValueStack()),使用push(obj)往值栈中放数据
Map request ;
Map session ...
写Service Demo的时候遇到的一个问题小结一下
我写了一个 Service 的Demo,但是将启动Service的Intent声明为主Activity的成员变量时,
public class MyServiceActivity extends Activity {
private Button startSer1;
private Button stopSer1;
private Button startSer2;
priv ...
android 中 涉及到context的时候this和this.getApplictionContext的区别
在android中常常会遇到与context有关的内容,特写下这篇blog,浅论一下context :
在语句 AlertDialog.Builder builder = new AlertDialog.Builder(this); 中,要求传递的
参数就是一个context,在这里我们传入的是this,那么这个this究竟指的是什么东东呢?
这里的this指的是Activ ...
Spring:基于数据流创建ApplicationContext
问题描述:
1、Spring的配置文件,以Clob的方式保存在数据库中,可以通过数据流的方式访问。在这种情况下,如何初始化ApplicationContext对象。
2、不允许现将流写入本地临时文件。
解决方案:
继承AbstractXmlApplicationContext类,代码如下:
public class StreamXmlApplicationContext ex ...
在非Activity子类跳转
由于 Context..只存在于 Activity Service的子类中.......
所以出现在非 Acitvity 子类中无法获取Context..无法执行跳转
Intent intent = new (Context,Class);
startActivity(intent);
类名 继承于
A (Acivity)
B(MapActivity)
C(Overlay ...