IC卡 (Integrated Circuit Card,集成电路卡) 有些国家和地区也称智能卡(smart card)、智慧卡(intelligent card)、微电路卡(microcircuit card)或微芯片卡等。它是将一个微电子芯片嵌入符合ISO 7816标准的卡基中,做成卡片形式。所 ...
分类:
其他好文 时间:
2016-10-16 01:04:14
阅读次数:
190
作为一个EndNote的重度使用者,几乎每天都会接触。希望由这样一个功能:看文献的时候,展示在眼前的都是含有PDF附件的;需要下载文献的时候,展示在眼前的都是没有附件的。 该需求可以通过Smart Group轻松解决! 建立一个包含所有带有附件的参考文献的Smart Group: Create Sm ...
分类:
其他好文 时间:
2016-10-14 20:28:57
阅读次数:
201
本文转载自:http://www.cnblogs.com/txw1958/p/scan-qrcode-login.html 微信扫描二维码登录网站 网站应用微信登录开发指南 微信扫描二维码登录网站是微信开放平台下网站应用的一种接口实现的功能。微信开放平台的网址是 https://open.weixi ...
分类:
微信 时间:
2016-10-14 20:27:20
阅读次数:
320
使用注解来构造IoC容器 用注解来向Spring容器注册Bean。需要在applicationContext.xml中注册<context:component-scan base-package=”pagkage1[,pagkage2,…,pagkageN]”/>。 如:在base-package指 ...
分类:
编程语言 时间:
2016-10-14 16:51:34
阅读次数:
147
在context中配置 如:在base-package指明一个包: <context:component-scan base-package="cn.edu.dao"/> 表明cn.gacl.java包及其子包中,如果某个类的头上带有特定的注解 @Component,@Repository,@Ser ...
分类:
编程语言 时间:
2016-10-13 17:04:12
阅读次数:
292
mysql_High.Performance.MySQL.3rd.Edition.Mar.2012 A B-Tree index speeds up data access because the storage engine doesn’t have to scan the whole table ...
分类:
其他好文 时间:
2016-10-12 00:57:48
阅读次数:
205
关于spring配置的问题 近日学习spring时遇到了这个问题: [html] view plain copy org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 12 in XML documen ...
分类:
编程语言 时间:
2016-10-11 11:21:11
阅读次数:
248
1.如果不想在xml文件中配置bean,我们可以给我们的类加上spring组件注解,只需再配置下spring的扫描器就可以实现bean的自动载入。 <!-- 注解注入 --> <context:annotation-config></context:annotation-config> <conte ...
分类:
编程语言 时间:
2016-10-09 06:49:18
阅读次数:
127
sourceinsight-scan 是一款集成在 SourceInsight 中的c/c++代码静态分析插件,集成了cppcheck,coverity,pclint等业界优秀的静态分析工具的优点。 旨在帮助开发人员,在IDE中快速发现编译器无法发现的非语法错误,降低修复成本。 无需编译,平均扫描速... ...
分类:
编程语言 时间:
2016-09-30 15:36:22
阅读次数:
238
一般来说.如果有where a=? and b=? and c=? 的语句. 如果表也有DML, 我一般只在a 上建索引. 这也是代价平衡的结果. 一方面 只在a 上建索引那么是 index range scan, 不像联合索引那样可以index unique scan , 我觉得速度差的不多(数据 ...
分类:
数据库 时间:
2016-09-26 10:53:07
阅读次数:
238