随笔
georgeguwenzhong
这个作者很懒,什么都没留下…
展开
-
2011怎样走过!
2011年三个月过去了,过去的三个月里发生了许多许多的事,细细想来只有一件深深烙入我的灵魂:女儿学会了怎样走路。 2011,怎样走过?来法国的这几年,对我来说是沉淀、是积累的三年。过去的很多东西都需要重新拿出来细细分析思考。 今天突发奇想,在Java Eye开博,希望记录自己学习中的点点滴滴。以不负我将来写《2011,这样走过!》...原创 2011-03-22 18:52:45 · 155 阅读 · 0 评论 -
Memory Leak analyze
Shallow Heap Size Shallow size is the amount of memory allocated to store the object itself, not taking into account the referenced objects.Retained Heap Size Retained size of an object is its s...原创 2012-03-12 06:21:05 · 97 阅读 · 0 评论 -
Java Exception Design
Talk something used to happen in projects. Java basic Exception Struts global exception handler design.2012-02-18 05:36:26 · 119 阅读 · 0 评论 -
JMX in Weblogic
Here I would like to list some topics I used to search or study.MBean Servers in WeblogicThe JVM for an Administration Server maintains three MBean servers provided by BEA and optionally maintains...2012-02-17 19:20:56 · 139 阅读 · 0 评论 -
Java String Charset Encoding
CharsetCharset is a named mapping between sequences of sixteen-bit Unicode code units and sequences of bytes. 1 byte = 8 bits, byte represent the int value from 0x00 through 0xFF. In ASC-II, we...2012-02-09 00:28:48 · 202 阅读 · 0 评论 -
Testing in Java
QA is important for production. Testing is important for QA. Here I would like to talk about testing in Java application development. It won't refer to project process/life cycle control, I will on...2011-12-02 05:59:58 · 95 阅读 · 0 评论 -
Weblogic 11g JSP cache
Normally, jsp_servlet classes will be cached by Weblogic 11g in: {BEA_WLS}\user_projects\domains\yourdomain\servers\yourserver\tmp\_WL_user\your_app_name We always meet a strange problem: why J...2012-01-31 00:41:04 · 156 阅读 · 0 评论 -
Unique Identifier generation in Java Application
During application design, there are always some requirements to assign unique identifer for specific Objects. System MillSeconds + RadomData base use Sequence use a column in table...2011-12-23 06:17:09 · 92 阅读 · 0 评论 -
Workflow Engine: OSWorkflow
OSWorkflow ReferenceOSWorkflow is now not maintenenced by provider. See more information from: http://www.opensymphony.com/ Explain osworkflow basic concept and how to use osworkflow. ...2011-12-21 00:44:29 · 196 阅读 · 0 评论 -
Hibernate Extension
Second level cache Ehcache in hibernate Hibernate batch load Use hibernate batch load feature to refresh a set of managed data in order to avoid memory leak and improve performance.Hib...2011-12-20 05:39:05 · 111 阅读 · 0 评论 -
AOP(3): Spring AOP
AOP ReferencesPlease refer to Spring Framework AOP specification site for more details on spring aop concepts.General introduction to Aspect-Oriented ProgrammingAspectAspect is "cross-c...2011-12-20 05:24:55 · 79 阅读 · 0 评论 -
UML Extension
Classes Relationship in UMLAssociation"Association" on behelf of the reference between Class A and Class B. Association allows one class to know the methods and attributes of referenced class.N...2011-12-15 06:06:37 · 106 阅读 · 0 评论 -
现在项目中用到的东西整理
SpringHibernateAcegiStrutsEhCacheOsWorkflowPropertySetDroolKXML BeanshellVelocity junitdbunithttpunitxmlunitservletunit原创 2011-04-08 20:36:21 · 92 阅读 · 0 评论 -
JMX Usage
There is long times since last time I did use JMX in my project. Too long to remember all details on how to use JMX. We can refer to Java website to get more details on how to use JMX: http://www.or...2011-12-13 06:22:21 · 88 阅读 · 0 评论 -
Using Taglib to Implement Dynamic UI
What's Taglib?Taglib is a JSP extension feature to allow developer to define complex UI interactivation in java code. It can simplify the code and logical in JSP page and we can control the JSP pag...2011-12-12 06:13:44 · 92 阅读 · 0 评论 -
java.util.ConcurrentModificationException
Where ConcurrentModificationException raisedCase 1: update value Entries during traverse Map in same Threadjava.util.ConcurrentModificationException will be raised in following java code: Ma...2012-03-20 18:10:38 · 160 阅读 · 0 评论