自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (20)
  • 问答 (1)
  • 收藏
  • 关注

原创 CyclicBarrier使用

 volatile关键字解析:http://mp.weixin.qq.com/s?src=3&timestamp=1474600039&ver=1&signature=fA4OwtcYwsEBwff*JKCl2mg-fR9TBZAoKJwxenYeMQ1ltg03UfyoEHJbhNg6pJANiba4TJn8M5knDiJL5m8IhhvE0eZkBtft7f...

2015-08-31 17:10:00 1316

原创 notify notifyAll wait

  * notify notifyAll wait 使用  * 1 一个对象执行相应的方法 *  (一个对象wait后,需要调用同一个对象的notify唤醒这个对象的wait,可以在不同线程执行) * 2 个人理解方法执行必须在synchronize代码块中执行(因为方法执行的时候必须获得对象监视器,个人理解监视器就是锁) * 3 执行wait后当前线程会释放掉这个对象的锁,...

2015-08-25 18:32:57 97

原创 Synchronized同步代码块关键字

  * synchronized的使用,其实是对象锁,可以锁定方法(对当前对象锁定),也可以锁定代码块(锁定单独的对象) * 1 当n个线程同时执行对一个对象锁定的代码块时,则同一时间只能有一个线程执行 *  * 场景设想: *  有一个车主想要出租自己的一个车(一个对象锁), *  可是有5个人同时想租这个车主的车(5个线程) *  那么这5个人按顺序分别租这个人的...

2015-08-25 17:58:16 535

原创 CountDownLatch例子2

   * 同步计数器  * 作用:同步N个线程执行 * 1 一个问题分为N个部分一起执行,执行完毕然后汇总 * @author root *  * 场景设想: *  有10个沙包,10个人来运送   *  当每人都运送完毕,则整个运送完毕 public class CountDownLatchTest2 { public static void...

2015-08-25 15:46:42 76

原创 CountDownLatch1

        个人理解为倒计数锁,让一个或几个线程等待另外一个或几个线程执行完毕,才继续执行如10个子线程执行完毕,主线程才能执行等等吧  下面提供两个例子来说明具体使用: 1 同步计数器 /** * 同步计数器  * 作用:同步N个线程执行 * 1 让所有线程同一时间开始执行  * 2 主线程等待所有子线程执行完毕,才能结束  * @author...

2015-08-25 15:39:45 118

原创 Mysql查询优化

  11 SQL执行顺序(7) SELECT (8) DISTINCT <select_list>(1) FROM <left_table>(3) <join_type> JOIN <right_table>(2) ON <join_condition>(4) W...

2015-08-10 18:20:06 105

原创 Mysql 表中添加测试数据

 mysql 存储过程动态表中添加测试数据DELIMITER $$USE `rc_temp`$$DROP PROCEDURE IF EXISTS `test_pro`$$CREATE DEFINER=`root`@`%` PROCEDURE `test_pro`()BEGIN DECLARE i INT DEFAULT 0; SET i = 1...

2015-08-10 17:50:45 463

python的一些学习资料,备用

一些chm的python学习资料,可以看看作为参考

2016-08-25

PowerDesigner15汉化+注册补丁

PowerDesigner15汉化+注册补丁 ,pd破解文件

2013-10-15

power designer 15破解文件

1 解压下载的文件 2 拷贝 pdflm15.dll 到power Designer相应的安装目录,覆盖原来的文件 3 打开power designer ,导入license.lic文件 破解成功。

2012-11-23

SQLPrompt SQL帮助工具

sqlserver 写sql的提示工具,很好用 ,分享给大家。

2012-09-28

ibatis文档

很全的 ibatis 文档,there are two kinds of document ,it is very full .

2012-07-19

时间控件DatePicker

DatePicker 是很强大的前端时间控件,里面有例子

2012-07-19

droiddraw工具

droiddraw ,android界面处理工具,点击直接就可以用,好东西

2012-06-11

Android开发教程

Android开发教程 ,非常清晰的 android 开发教程。

2012-06-05

android应用开发揭秘宝典

android应用开发揭秘宝典,清晰,讲解详细的书籍

2012-06-05

Java与模式(清晰书签版

Java与模式(清晰书签版) 很值得实用的文档。

2012-06-05

android应用开发揭秘

清晰实用的android开发学习电子书。

2012-06-04

jquery-validation 校验框架

很好用的校验框架 ,使用实例 http://www.cnblogs.com/c1230v/archive/2012/03/06/2382221.html

2012-06-04

spring技术手册(繁体版)

本书对spring对 其功能点做了详细摘录, 做了例子 ,并对事物, aop等等东西做了详细讲解

2011-10-11

spring 基础学习

本书详细介绍了 spring 的一些基本配置,和 其与一些框架的整合,是初学者学习的好帮手

2011-10-11

WebLogicServer11gCluster_SingleMachine.rar

高清的welogicserver 服务器文档,详细介绍了weblogc 的安装 发布, 初学者 得到很好参考

2011-10-11

Expert One-on-One J2EE Design and Development

 What is this book about? The results of using J2EE in practice are often disappointing: applications are often slow, unduly complex, and take too long to develop. Rod Johnson believes that the problem lies not in J2EE itself, but in that it is often used badly. Many J2EE publications advocate approaches that, while fine in theory, often fail in reality, or deliver no real business value. "Expert One-on-One: J2EE Design and Development" aims to demystify J2EE development. Using a practical focus, it shows how to use J2EE technologies to reduce, rather than increase, complexity. Rod draws on his experience of designing successful high-volume J2EE applications and salvaging failing projects, as well as intimate knowledge of the J2EE specifications, to offer a real-world, how-to guide on how you too can make J2EE work in practice. It will help you to solve common problems with J2EE and avoid the expensive mistakes often made in J2EE projects. It will guide you through the complexity of the J2EE services and APIs to enable you to build the simplest possible solution, on time and on budget. Rod takes a practical, pragmatic approach, questioning J2EE orthodoxy where it has failed to deliver results in practice and instead suggesting effective, proven approaches. What does this book cover? In this book, you will learn When to use a distributed architecture When and how to use EJB How to develop an efficient data access strategy How to design a clean and maintainable web interface How to design J2EE applications for performance Who is this book for? This book would be of value to most enterprise developers. Although some of the discussion (for example, on performance and scalability) would be most relevant to architects and lead developers, the practical focus would make it useful to anyone with some familiarity with J2EE. Because of the complete design-deployment coverage, a less advanced developer could work through the book along with a more introductory text, and successfully build and understand the sample application. This comprehensive coverage would also be useful to developers in smaller organisations, who might be called upon to fill several normally distinct roles. What is special about this book? Wondering what differentiates this book from others like it in the market? Take a look: It does not just discuss technology, but stress its practical application. The book is driven from the need to solve common tasks, rather than by the elements of J2EE. It discuss risks in J2EE development It takes the reader through the entire design, development and build process of a non-trivial application. This wouldn't be compressed into one or two chapters, like the Java Pet Store, but would be a realistic example comparable to the complexity of applications readers would need to build. At each point in the design, alternative choices would be discussed. This would be important both where there's a real problem with the obvious alternative, and where the obvious alternatives are perhaps equally valid. It emphasizes the use of OO design and design patterns in J2EE, without becoming a theoretical book ,高清文档 

2011-10-11

spring security

spring 安全在很多的企业项目中使用 这个事我自我调试过的 安全 项目,

2011-10-11

hibernate_api

chm 的hibernate api文档

2011-05-31

WebLogic学习文档

WebLogic学习资料。。。。 web开发的服务器技术

2011-04-25

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除