在使用工具Create Enterprise Geodatabase的时候报错Bad login user,开始怀疑为密码错误,然后反复在plsql中尝试发现并没有错误,很疑惑,然后去官网查询:Error: Bad login userPossible reason you received th....
分类:
数据库 时间:
2014-10-21 19:27:54
阅读次数:
834
@NotBlank(message = "商品类型不能为空.")@NotNull(message="必须指定用户的登录系统")原理是什么样的?写一个例子看看。
分类:
编程语言 时间:
2014-10-21 16:50:08
阅读次数:
315
1、handler 与Looper 与MessageQueue 、Message之间的关系
handler:是处理主线程(ui线程)处理耗时操作的线程,通过post message到MessageQueue队列中,使用handler需要实现 handlerMessage方法,通过更新主线程ui
Looper:每个Looper对应一个MessageQueue,在handler之前Looper....
分类:
移动开发 时间:
2014-10-21 15:27:17
阅读次数:
217
原创地址:http://www.cnblogs.com/jfzhu/p/4039604.html转载请注明出处前面介绍过《Step by Step 创建一个WCF Service》和《使用WCF的Trace与Message Log功能》,本文介绍一下如何用JavaScript来调用WCF Servi...
分类:
编程语言 时间:
2014-10-21 11:58:40
阅读次数:
316
之前做项目的时候用到了国际化,可能不是最优的方法,但还是总结一下,供自己以后参考!主要包含struts2的国际化struts2国际化设置步骤:1.在struts.xml文件中添加配置:<constantname="struts.custom.i18n.resources"value="message"></constant>其中,message是..
分类:
其他好文 时间:
2014-10-21 02:28:22
阅读次数:
198
今天在友盟的错误分析里面找到了一个这样的错误:Application received signal SIGSEGV(null)( 0 CoreFoundation 0x2ef6dfeb + 154 1 libobjc.A.dylib ...
分类:
其他好文 时间:
2014-10-21 00:37:17
阅读次数:
270
============问题描述============ 问个问题啊openfire聊天室的时候每次退出聊天室再次进入的时候都会获取以前的消息记录怎么让不获取此记录呢?我看网上有一种说法是DelayInformationinf=(DelayInformation)message.getExtensi...
分类:
其他好文 时间:
2014-10-20 23:03:49
阅读次数:
244
一般我们用timer和AlarmManager进行定时任务。先简单说下timer的使用: 1 TimerTask task = new TimerTask(){ 2 public void run() { 3 Message message = new Message...
分类:
其他好文 时间:
2014-10-20 17:02:29
阅读次数:
147
Message:消息,其中包含了消息ID,消息处理对象以及处理的数据等,由MessageQueue统一列队,终由Handler处理。
Handler:处理者,负责Message的发送及处理。使用Handler时,需要实现handleMessage(Message?msg...
分类:
移动开发 时间:
2014-10-20 15:29:30
阅读次数:
268
1、定义全局变量:直接在函数内部省略var操作符,既定义为全局变量(不推荐使用,很难维护,在严格模式下会抛出ReferenceError错误)function test(){ message = "helloWorld!";}test();alert(message);输出:helloWorld.....
分类:
编程语言 时间:
2014-10-20 13:25:19
阅读次数:
151