dao层模板 List<Object> listParam = new ArrayList<Object>(); StringBuffer sql = new StringBuffer(); sql.append("SELECT "); Session session = getHibernateT ...
分类:
其他好文 时间:
2018-09-05 11:38:59
阅读次数:
124
解决中文编码: git config --global core.quotepath false git config --global gui.encoding utf-8 git config --global i18n.commitencoding utf-8 git config --glo ...
分类:
其他好文 时间:
2018-09-02 10:26:54
阅读次数:
278
jsp的基础语法学习 page指令介绍: Language:用来定义要使用的脚本语言; language="java" 定义使用的脚本语言是java。 contentType:定义JSP字符的编码和页面响应的MIME类型; MIME类型 >MIME (Multipurpose Internet Ma ...
分类:
Web程序 时间:
2018-09-01 19:22:13
阅读次数:
185
css: align-items: center; 该样式配合display: flex;可以使子元素垂直居中 justify-content: center; 该样式配合display: flex;可以使子元素水平居中 vertical-align:; 垂直对齐方式 outline-style:; ...
分类:
其他好文 时间:
2018-08-30 19:57:06
阅读次数:
137
时间管理 Time Management 此RTOS除了可以把你的应用代码作为线程运行,它还可以提供一些时间服务功能,使用这些功能你就可以访问RTOS的一些系统调用。 时间延迟Time Delay 在所有的时间服务功能中,最基本的一个就是延时函数。它可以在你的应用中提供非常简单易用的延时功能。也许你 ...
分类:
其他好文 时间:
2018-08-28 13:01:28
阅读次数:
202
// 加在父级div中垂直居中:align-items:center; display: -webkit-flex;水平居中:justify-content:center; display: -webkit-flex; 引用: https://zhidao.baidu.com/question/15 ...
分类:
其他好文 时间:
2018-08-28 10:30:51
阅读次数:
158
解密 java -classpath collection-impl-0.0.1.jar com.ai.toptea.collection.message.DESEncrypt 1EFE46638952F577 dec 加密 java -classpath collection-impl-0.0.1 ...
分类:
编程语言 时间:
2018-08-28 00:49:27
阅读次数:
175
为什么创建索引后,速度就会变快? 答:使用索引后,查询是按二叉树算法来查找到记录 索引使用的注意事项: 索引的代价: 1. 占用磁盘空间 2. 对dml(新增、修改、删除)操作有影响,变慢 在哪些列上适合添加索引: 1. 较频繁的作为查询条件字段应该创建索引 select * from emp wh ...
分类:
数据库 时间:
2018-08-26 13:48:56
阅读次数:
202
1. flex中的align-item 2. tabel + tabel-cell 3. transform方式(多用于列表图片不规整的居中显示) ...
分类:
其他好文 时间:
2018-08-22 16:55:08
阅读次数:
162
1.提示1080端口被占用: Cmd——Netstat -ano——找到端口号为1080的pid——打开任务管理器——干掉pid 2.inter error:your request was unsuccessful Cannot create cgi process--program not fo ...
分类:
Web程序 时间:
2018-08-20 00:30:50
阅读次数:
590