1.安装oracle Clinet 首先到Oracle官网上去下载一个Oracle 11g Client(我的是11g的oracle),不过需要先申请一个Oracle 帐号,才能下载。 目前下载地址:http://www.oracle.com/technetwork/topics/winsoft-0 ...
分类:
数据库 时间:
2016-11-15 10:22:39
阅读次数:
181
MBG http://www.mybatis.org/spring/apidocs/reference/org/mybatis/spring/SqlSessionFactoryBean.html 这几天搭建了spring4.1.2+mybatis3.2.8一个简单的框架。 发现mybatis的Sql ...
分类:
其他好文 时间:
2016-11-15 10:14:13
阅读次数:
388
Xslider演示8种滚动效果包括: 一、左右切换:每次移动固定距离 二、左右切换:最后一个显示在最右侧 三、自动切换 四、循环切换 五、文本的上下滚动 六、上下切换 七、上下自动循环切换 在线预览 下载地址 在线实例 <h2>七、上下自动循环切换</h2> <div class="newslist ...
分类:
其他好文 时间:
2016-11-15 10:11:29
阅读次数:
133
在排序方式中,快速是比较普遍使用的,因为其速度快。 因为其是不断的递归,而且是根据基准点的左右两边开始递归,直到数组只有一个值的时候才返回。 这个基准点是自己定的。 一般取中间,比较好理解。 ...
分类:
编程语言 时间:
2016-11-15 00:38:13
阅读次数:
212
JS实现倒计时效果代码如下: 实现效果入下: ...
分类:
Web程序 时间:
2016-11-15 00:30:04
阅读次数:
199
<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><script>function addZero(n){ if(n < 10){ return '0' + n; }else{ return '' + n; }} ...
分类:
其他好文 时间:
2016-11-15 00:26:11
阅读次数:
175
The grey area below represents what is going to be logged in the web server's log file.* Your goal is to make it like a username "admin" has succeeded ...
分类:
Web程序 时间:
2016-11-14 20:25:24
阅读次数:
289
$(".wrap li").hover(function () { $(this).children("ul").slideToggle(); }); }); </script></head><body> <div class="wrap"> <ul> <li> <a href="#">一级菜单1< ...
分类:
其他好文 时间:
2016-11-14 20:12:17
阅读次数:
280
创建自定义中间件 提供一个 接受Request对象作为第一个参数,Response对象作为第二个参数,next作为第三个参数 的函数 next()参数是一个通过中间件框架传递的函数,指向下一个要执行的中间件函数。所以必须在退出自定义函数之前调用next(),否则程序不会被调用 ...
分类:
其他好文 时间:
2016-11-14 16:50:10
阅读次数:
167