码迷,mamicode.com
首页 >  
搜索关键字:context    ( 11739个结果
Spring容器初始化后执行的方法
在项目中, 会遇到要在容器加载完就做一些初始化, 例如Quartz的监听器重新注册(Quartz监听器在RAM中的, Web容器重启或关闭会丢失)等需求。   import org.springframework.context.ApplicationListener; import org.springframework.context.event.ContextRefreshedEvent...
分类:编程语言   时间:2014-12-18 15:18:14    阅读次数:197
3.QT中的debug相关的函数,以及文件锁的使用
?? 1  新建项目T33Debug main.cpp #include #include #include    //文件锁   void MyMessageHandler(QtMsgType type,const QMessageLogContext &context,con...
分类:其他好文   时间:2014-12-18 12:00:06    阅读次数:251
canvas笔记
1.清除矩形区域 context.clearRect(x,y,width,height) x:清除矩形起点横坐标 y:清除矩形起点纵坐标 width:清除矩形长度 height:清除矩形高度2. 绘制矩形 context.fillRect(x,y,width,height) strokeRect.....
分类:其他好文   时间:2014-12-18 01:33:42    阅读次数:245
Content作用
常见于代码中,如:Button bn = new Button(this);是因为创建UI组件时传入1个Context参数,Context代表访问Android应用环境的全局变量信息的API,让UI组件持有1个Context参数,可让这些UI组件通过该Context参数来回去Android应用环境的...
分类:其他好文   时间:2014-12-18 00:10:54    阅读次数:206
spring 启动流程
AbstractApplicationContext 分析启动流程 // Prepare this context for refreshing.prepareRefresh(); 1. // Initialize any placeholder property sources in the c....
分类:编程语言   时间:2014-12-17 20:40:57    阅读次数:234
Hibernate current_session_context_class的事务说明
官方文档的原文如下: The hibernate.current_session_context_class configuration parameter defines which org.hibernate.context.CurrentSessionContext implementation should be used. Note that for backwards com...
分类:Web程序   时间:2014-12-17 18:39:02    阅读次数:182
android Toast报错 Activity context.this cannot be resolved to a variable
android开发,我在我的 activity 插入一个按钮,如果andriod market找不到的话就使用 toast进行提示,在使用的时候出现了一些问题,下面的代码报错了 Context cannot be resolved to a variable  1 2 3 4 5 6 7 Uri uri = U...
分类:移动开发   时间:2014-12-17 18:35:36    阅读次数:192
ServletContextListener作用
ServletContext 被 Servlet 程序用来与 Web 容器通信。例如写日志,转发请求。每一个 Web 应用程序含有一个Context,被Web应用内的各个程序共享。因为Context可以用来保存资源并且共享,所以我所知道的 ServletContext 的最大应用是Web缓存----...
分类:其他好文   时间:2014-12-17 17:44:36    阅读次数:141
Android · SQLite
package com.manhua.sqlitetest;import android.app.Activity;import android.content.Context;import android.database.Cursor;import android.os.AsyncTask;im...
分类:移动开发   时间:2014-12-17 16:12:54    阅读次数:269
封装 Toast
一、 ToastView.java 1 import android.content.Context; 2 import android.view.LayoutInflater; 3 import android.view.View; 4 import android.widget.ImageVie...
分类:其他好文   时间:2014-12-17 16:06:49    阅读次数:325
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!