- 浏览: 186720 次
- 性别:
- 来自: 沈阳
最新评论
-
joyceKemi:
2013-6-26 13:00:48 org.apache.c ...
spring_mvc(一)环境搭建 -
yunzhu:
收藏的文章很好,谢谢分享
http&servlet -
javaeyegood:
spring_mvc(四)Message Converters
文章列表
Java提供了强制原子性的内置锁机制:synchronized块。
一个synchronized块有两部分:锁对象的引用,以及这个锁保护的代码块。
每个Java对象都可以隐式地扮演一个用于同步的锁的角色;这些内置的锁被称为内部锁或监听器锁。执行线程进入synchronized块之前会自动获得锁;而无论通过正常控制路径退出,还是从块中抛出异常,线程都在放弃对synchronized块的控制时自动释放锁。获得内部锁的唯一途径是:进入这个内部锁保护的同步块或方法。
内部锁在Java中扮演了互斥锁的角色。
重进入:
当一个线程请求其他线程已经占有的锁时,请求线程将被阻塞。然而内部锁是可重进入的, ...
mvn svn testng
- 博客分类:
- Maven
maven - http://m2eclipse.sonatype.org/sites/m2e
svn - http://subclipse.tigris.org/update_1.6.x
TestNG - http://beust.com/eclipse
Hello.ice
#ifndef SIMPLE_ICE
#define SIMPLE_ICE
//名字空间 or 包名
module demo.slice.Hello
{
interface Hello{
void printString(string s);
};
};
#endif
服务器:
HelloI.java
package demo.ice.Hello.server;
import demo.slice.Hello._HelloDisp;
i ...
非常好的BASH脚本编写教程
这里有个老American写的 BASH脚本编写教程,非常不错,至少没接触过BASH的也能看懂!
建立一个脚本
Linux中有好多中不同的shell,但是通常我们使用bash (bourne again shell) 进行shell编程,因为bash是免费的并且很容易使用。所以在本文中笔者所提供的脚本都是使用bash(但是在大多数情况下,这些脚本同样可以在 bash的大姐,bourne shell中运行)。
如同其他语言一样,通过我们使用任意一种文字编辑器,比如nedit、kedit、emacs、vi
等来编写我们的shell程序。
...
几种注入annotation
http://blogs.sourceallies.com/2011/08/spring-injection-with-resource-and-autowired/
youtube spring视频
http://www.youtube.com/user/SpringSourceDev
cqrs
https://github.com/mspnp/cqrs-journey-doc
youtube dis
http://www.youtube.com/watch?v=DCdGlxBbKU4
http://blog.csdn.net/yangjun2/a ...
html5 game
- 博客分类:
- helloworld
http://blog.csdn.net/lufy_legend/article/details/7094567
http://rpgjs.com/
http://www.lostdecadegames.com/page3/#posts
add_action('wp_footer', function() {
echo 'Hello from the footer!';
});
*/
add_action('comment_post', function() {
$email = get_bloginfo('admin_email');
echo $email;
wp_mail(
$email,
'New Comment Posted',
'A new comment has been left on your blog'
);
})
<?php
/*
Plugin Name: FC Filter
Plugin URI: http://mistbow.iteye.com/blog/1500008
Description: Just for demo purposes
Author: guo fuchun
Author URI: http://mistbow.iteye.com/
Version: 1.0
*/
//add_filter('the_title', ucwords);
/*
add_filter('the_title', function($content) {
renturn ...
<?php
/*
Plugin Name: FC Filter
Plugin URI: http://mistbow.iteye.com/blog/1500008
Description: Just for demo purposes
Author: guo fuchun
Author URI: http://mistbow.iteye.com/
Version: 1.0
*/
?>
D:\xampp\htdocs\wpcourse\wp-content\plugins\FC_filter\fc_filter.php
<html>
<head>
<title></title>
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<link rel="stylesheet" href="css/day.css">
</head>
<body>
<h1>My Blog</h1>
<butt ...
jquery api
http://api.jquery.com/
ul.emphasis li {} //选择的是ul下面的li 不管是子节点还是孙子节点
ul.emphasis > li {} //选择的只是子节点 孙子节点将不发生作用
下面的jquery代码只选择子节点,不选择孙子节点
<script type="text/javascript">
$('ul.emphasis').children('li').css('color', 'red');
</script>
如果想查到所有孙子节点等,需要使用下面的方法:
...
document ready
- 博客分类:
- html&css
<html>
<head>
<title></title>
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<style type="text/css">
.emphasis {color: green}
</style>
<script type="text/javascript">
...
basic jquery
- 博客分类:
- html&css
<html>
<head>
<title></title>
<style type="text/css">
ul li {color: red;}
.emphasis {color: green}
</style>
</head>
<body>
<ul>
<li>hello</li>
<li>hello 2</li>
<li>hello 3</li>
...
zen-coding
- 博客分类:
- html&css
Zen HTML Selectors
E#name
div#name
<div id="name"></div>
E.name
div.name
<div class="name"></div>
div.one.two
<div class="one two"></div>
div#name.one.two
<div id="name" class="one two">< ...