`
ray_yui
  • 浏览: 216639 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202       volatile:http://ray-yui.iteye.com/blog/2231474       判断线程安全:http://ray-yui.iteye.c ...
并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202      ...
并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202       volatile:http://ray-yui.iteye.com/blog/2231474       判断线程安全:http://ray-yui.iteye.c ...
      相信在项目开发当中都曾经遇到过,有某些要储蓄到数据库当中的实体字段是不确定的,可能会动态变化,或者多个类型的字段同时存在或同时不存在,那创建数据库字段时,因为实体的字段不能确定,数据库的字段也就不能确定. 例子:       笔者参与开发的一个招生系统当中,每个课程都有各自的入学要求,而入学要求需要被保存到数据库当中被课程引用,但入学要求的实体是不确定的,入学要求可能是面试分数大于某个数字,亦可能是是否通过4级英语,那将是一个布尔类型的字段,而在进行某个操作时需要校验该申请人是否满足他申请课程的入学要求.      由于以上的需求,入学要求需要被保存到数据库,但数据库中没办法 ...
      相信在读者刚接触Java的时候,都曾经学习到线程安全的会影响效率,例如 HashTable < HashMap,StringBuffered < StringBuilder , Vector <  ArrayList ,当然原因也非常简单,因为这些类方法当中存在同步(synchronized)操作       要说明为什么同步操作会影响效率,首先就要了解Java当中的多线程原理,Java当中多个线程之间是不能互相传递数据通信的,多线程之间的通信只能通过共享变量来完成.而JVM当中存在一个所有线程都共享的内存区域,称为主存,当我们new一个对象的时候,该对象将会 ...
并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202       volatile:http://ray-yui.iteye.com/blog/2231474       判断线程安全:http://ray-yui.iteye.c ...
并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202       volatile:http://ray-yui.iteye.com/blog/2231474       判断线程安全:http://ray-yui.iteye.c ...
本文章需要对JDK5 Executor框架有所了解,请读者先阅读 初解线程池:http://ray-yui.iteye.com/blog/2072463 并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202       vol ...
并发编程系列文章:       初解线程池:http://ray-yui.iteye.com/blog/2072463       详解线程池:http://ray-yui.iteye.com/blog/2075311       并发数据类型:http://ray-yui.iteye.com/blog/2080454       并发数据结构:http://ray-yui.iteye.com/blog/2084202       volatile:http://ray-yui.iteye.com/blog/2231474       判断线程安全:http://ray-yui.iteye.c ...
AOP系列文章:       Spring AOP:http://ray-yui.iteye.com/blog/2024759                CGLIB:http://ray-yui.iteye.com/blog/2026426           Javassist:http://ray-yui.iteye.com/blog/2029261       Javassist是一个强大的高性能的代码生成包,和CGLIB一样成为众多框架的动态代理解决方案,和CGLIB同样拥有不需要实现接口即可进行动态代理的特点,而且还支持动态生成Java代码,动态实现代理逻辑等强大功能   ...
AOP系列文章:       Spring AOP:http://ray-yui.iteye.com/blog/2024759                CGLIB:http://ray-yui.iteye.com/blog/2026426           Javassist:http://ray-yui.iteye.com/blog/2029261 什么是CGLIB?       CGLIB是一个强大的高性能的代码生成包.它 ...
AOP系列文章:       Spring AOP:http://ray-yui.iteye.com/blog/2024759                CGLIB:http://ray-yui.iteye.com/blog/2026426           Javassist:http://ray-yui.iteye.com/blog/2029261 什么是AOP?       AOP是对传统面向对象开发的一种有效的补充,在AOP中概念非常多,请容许笔者省略数千字的概念,只举出一个示例,面向对象中的类就好比是士兵,我们编写每个类就等同于为每个士兵增加装备和训练士兵的体能,从而达到可 ...
开源工具系列文章:       Apache Commons Lang(1):http://ray-yui.iteye.com/blog/1953020       Apache Commons Lang(2):http://ray-yui.iteye.com/blog/1958319       Apache Commons BeanUtils:http://ray-yui.iteye.com/blog/1961451       Apache Commons Collections:http://ray-yui.iteye.com/blog/2021484       Apache Com ...
开源工具系列文章:       Apache Commons Lang(1):http://ray-yui.iteye.com/blog/1953020       Apache Commons Lang(2):http://ray-yui.iteye.com/blog/1958319       Apache Commons BeanUtils:http://ray-yui.iteye.com/blog/1961451       Apache Commons Collections:http://ray-yui.iteye.com/blog/2021484       Apache Com ...
开源工具系列文章:       Apache Commons Lang(1):http://ray-yui.iteye.com/blog/1953020       Apache Commons Lang(2):http://ray-yui.iteye.com/blog/1958319       Apache Commons BeanUtils:http://ray-yui.iteye.com/blog/1961451       Apache Commons Collections:http://ray-yui.iteye.com/blog/2021484       Apache Com ...
Global site tag (gtag.js) - Google Analytics