Fork me on GitHub
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 96 下一页
摘要: ```sql ALTER TABLE ADD UNIQUE INDEX ( , , ) USING BTREE sql ALTER TABLE ADD UNIQUE INDEX ( , , ) USING BTREE Navicat 创建索引,需要如下步骤 在表右键 设计表... 阅读全文
posted @ 2015-09-22 11:38 _落雨 阅读(1853) 评论(0) 推荐(0) 编辑
摘要: ```shell # rpm -q centos-release centos-release-5-4.el5.centos.1 ``` ![](http://images2015.cnblogs.com/blog/162508/201509/162508-20150914005954387-1471632487.png) 阅读全文
posted @ 2015-09-14 01:00 _落雨 阅读(638) 评论(0) 推荐(0) 编辑
摘要: mysql有个字段是bit,只存储1和0,是二进制存储,那么在java的dao层如何映射成boolean呢 其实就是在底层dao做反射的时候,先判断字段(比如isStandard)的字段类型是否为boolean,如果是,则在查出数据库字段bit is_standard的时候,做转换 注... 阅读全文
posted @ 2015-09-12 14:22 _落雨 阅读(21440) 评论(0) 推荐(0) 编辑
摘要: 当浏览器滚动条向下滚动,自动悬浮导航栏在最上面。效果:![](http://images0.cnblogs.com/blog2015/162508/201508/271807033751042.gif)### 1、 css代码```css .ui-jqgrid-htable{ z-index: 9... 阅读全文
posted @ 2015-08-27 18:07 _落雨 阅读(1970) 评论(0) 推荐(0) 编辑
摘要: ```html ```@落雨http://ae6623.cn效果: ![](http://images0.cnblogs.com/blog2015/162508/201508/252208467036484.jpg) 阅读全文
posted @ 2015-08-25 22:08 _落雨 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 需求: 一个手机号13152461111,由于安全性,需要替换4 7位字符串为星号,为131 1111,那么有2中玩法,一种是前端隐藏,一种是后台隐藏。 1. 前台隐藏 最终效果: 2. 后台隐藏(Java) 最终效果: 原理解析: 正则表达式中,替换字符串,括号的意思是分组,在replace()方 阅读全文
posted @ 2015-08-25 12:28 _落雨 阅读(19063) 评论(0) 推荐(2) 编辑
摘要: ```tail -f /var/log/apport.logmore /var/log/xorg.0.logcat /var/log/mysql.errless /var/log/messagesgrep -i fail /var/log/boot```cat 从第一行開始显示档案内容。tac 从最... 阅读全文
posted @ 2015-08-22 16:58 _落雨 阅读(657) 评论(0) 推荐(0) 编辑
摘要: ###1 NtCreateFile(\Device\VBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries)![](http://images0.cnblogs.com/blog2015/162508/20150... 阅读全文
posted @ 2015-08-22 02:10 _落雨 阅读(3233) 评论(0) 推荐(0) 编辑
摘要: 1.首先是新建Maven工程2.引入Pom依赖3.新建一个Controller4.运行Main方法5.浏览器访问![](http://images0.cnblogs.com/blog2015/162508/201508/182302257858800.png)![](http://images0.c... 阅读全文
posted @ 2015-08-18 22:10 _落雨 阅读(2104) 评论(0) 推荐(0) 编辑
摘要: 查找当前目录下.sh文件中,最近30分钟内修改过的文件。find . -name '*.sh' -type f -mmin -30查找当前目录下.phtml文件中,最近30分钟内修改过的文件,的详细情况。find . -name '*.sh' -type f -mmin -30 -ls查找当前目录下... 阅读全文
posted @ 2015-08-11 18:00 _落雨 阅读(1848) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 96 下一页