- 浏览: 1115640 次
最新评论
-
Lixh1986:
Java并发编程:自己动手写一把可重入锁https://blo ...
Java之多线程之Lock与Condition -
Lixh1986:
http://win.51apps.com.cn/https: ...
temp -
ztwsl:
不错,支持很好
HttpServletRequest和ServletRequest的区别 -
guodongkai:
谢谢您能将知识精华汇编总结,让初学者们从原理中学会和提高。
javaScript之function定义 -
kangwen23:
谢谢了,顶顶
struts2中的ValueStack学习
文章列表
/*
—— dash [dæʃ] quick and suddenly
# hash [hæʃ] cut into small lumps
/ slash [slæʃ] make a long, deep cut in it.
\ back-slash
: colon [ˈkəʊlən] a punctuation mark (:) used after a word introducing
a series or an example or an explanation. ...
初学 Java Web 开发,请远离各种框架,从 Servlet 开发
转自: http://www.oschina.net/question/12_52027
Web框架是开发者在使用某种语言编写Web应用服务端时关于架构的最佳实践。很多Web框架是从实际的Web项目抽取出来的,仅和Web的请求和响 ...
数据库之事务之并发:脏读,不可重复读,幻读
一、现象描述
数据库事务并发产生的问题,现象有以下三种:
第一种现象: 脏读:
描述:在一次事务中,读取了另一个尚未提交事务正在修改的数据。
原因:该数 ...
效果图:
function getPagination(curPage, pagesize, count) {
var total = Math.ceil(count/pagesize);
if (curPage > total) curPage = total;
var pl = curPage; // pager left
var cur_item = "<b>" + pl + "</b>";
var nl = 0; // number left ...
jQuery empty() vs remove()
What's the difference between empty() and remove()methods in jQuery, and when we call any of these methods, the objects being created will be destroyed and memory released?
----------------------------------------------------------------------------------
- empty() wi ...
mysql之同表复制插入数据
一、语法:
--
INSERT INTO table_name1 (
column_1,
column_2,
column_3,
column_4
)
SELECT
column_1,
column_2,
column_3,
column_4
FROM
table_name1
WHERE
id = 'xxx'
--
二、注意
如果是 主键,则可以 count(*) 作为主键
三、例子
INSERT INTO tb_u ...
HTML Anchors with 'name' or 'id'?
When one wants to refer to some part of a webpage with the
"http://example.com/#foo"
method, should one use
<h1><a name="foo"/>Foo Title</h1>
or
<h1 id="foo">Foo Title</h1>
They both wo ...
attr() 用于自定义属性,id ;
prop() 用于原生属性,src,href 等。
---------------------------------------------------------------------------
但是,
如果移除属性,
removeProp() 会使值变为 undefined。
removeAttr() 会完全移除。
---------------------------------------------------------------------------
There are two things to note, ...
Jquery mouseenter() vs mouseover()
问题:
在使用 $.slideDown() , $.slideUp() 时,
如果是用 mouseover() 事件去触发该效果,则会出现效果重叠现象。
就是 $.slideDown() , $.slideUp() 会被触发多次。
这不是我们想要的。
使用 mouseenter() 代替。
参考:
You see the behavior when your target element contains child elements:
http://jsfiddle.net/ZCWvJ/7/
Each tim ...
A Complete Guide to Flexbox
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
Flex 布局教程:语法篇
http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html
Flex 布局教程:实例篇
http://www.ruanyifeng.com/blog/2015/07/flex-examples.html
-
快乐的 Linux 命令行
http://billie66.github.io/TLCL/index.html
一、如何使用 ExecutorService.submit() ?
submit()
可以接受 Callable 或 Runnable 对象。
返回值是 Future 对象(调用 Future 对象的 get() 方法会导致主线程阻塞)。
二、程序
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit ...
一、问题: execute() 与 submit() 的区别?
execute()
来自 Executor 接口,
没有返回值,
只接受 Runnable 对象。
submit()
来自 ExecutorService 接口( ExecutorService 接口继承了 Executor 接口)
返回 Future 对象
可以接受 Callable, Runnable 对象。
二、程序
import java.util.concurrent.Callable;
import java.util.concurrent.Executor;
import java.u ...
JS操作iframe
1. 获得iframe的window对象
2. 获得iframe的document对象
3. iframe中获得父页面的window对象
4. 获得iframe在父页面中的html标签
5. iframe的onload事件
6. frames
参考文章
1. 获得iframe的window对象
存在跨域访问限制。
chrome:iframeElement. contentWindow
firefox: iframeElement.contentWindow
ie6:iframeElement.content ...
本文部分内容转自http://www.cnblogs.com/lengbingshy/archive/2010/02/25/1673476.html
本质上没区别。只是函数有如:只能返回一个变量的限制。而存储过程可以返回多个。而函数是可以嵌入在sql中使用的,可以在select中调用,而存储过程不行。执行的本质都一样。
函数限制比较多,比如不能用临时表,只能用表变量.还有一些函数都不可用等等.而存储过程的限制相对就比较少
1. 一般来说,存储过程实现的功能要复杂一点,而函数的实现的功能针对性比较强。
2. 对于存储过程来说可以返回参数,而函数 ...