Saturday, March 20, 2010 2:12

Posts Tagged ‘Java’

PowerDesigner Reverse Engineer

Friday, February 5, 2010 13:34

Get the Physical Data Model 1. Menu Operation File, Reverse Engineer , Database, New Phycial Data Model 2. Connection Add a connect to the target database 3. Choose tables to generate the models Generate the Java Code 1. Menu Operation Tools , Generate Object-Oriented Model, Detail, O/R Mapping, Enable Transformations, Extended Model Definitions, O/R Mapping,      Hibernate To be continued.

This was posted under category: Database, Java  |  Read Full Story  |  0 Comments

GWT Exception – The style name should be in camelCase

Saturday, December 12, 2009 14:49

When I needed to add or modify a CSS property of an element in Google Web Toolkit (GWT), I’d always do it like this : widget.getElement().setAttribute("style", "align:right;"); However, if there was already ...

This was posted under category: Java  |  Read Full Story  |  0 Comments

MyEclipse 6.5 GA

Friday, December 11, 2009 7:54

1. Overview MyEcipse 6.5 delivers Java enterprise developers new strategic application lifecycle management (ALM) features. In addition, it includes improvements of MyEclipse's industry leading Java EE tools and 1-click Java application technology repository and runtime. MyEclipse's new ALM features are founded upon the integration of Maven2 project and ...

This was posted under category: Java  |  Read Full Story  |  0 Comments

Why CSV files

Saturday, March 21, 2009 9:51

 ...

This was posted under category: Java  |  Read Full Story  |  0 Comments

why CSV files

Saturday, March 21, 2009 9:50

 ...

This was posted under category: Java  |  Read Full Story  |  0 Comments

Java中replaceAll和split中的反斜杠

Friday, February 27, 2009 16:46

在Java中处理一些路径相关的问题的时候,如要取出ie...

This was posted under category: Java  |  Read Full Story  |  0 Comments

Hibernate双向关联中常常用Set 而不用List

Friday, February 27, 2009 16:37

对于一对多关联当中的List,需要在数据库里面维护一个index列,如果List当中的某个元素被删除,那么Hibernate会连续发送多条 update语句,更新后续所有元素的index列,以确保index的连续性(在inverse为false的情况下),如果你选择自己维护index 列,也同样会面临这个问题,甚至更棘手(在inverse为true的情况下),所以List被谨慎的使用在极其罕见的场合。  ...

This was posted under category: Team  |  Read Full Story  |  0 Comments

Spring开发过程中常用的模式

Friday, February 27, 2009 16:33

Exception Translator (...

This was posted under category: Team  |  Read Full Story  |  0 Comments

Tomcat Out of Memory

Sunday, February 8, 2009 14:27

We always get out of memory error on Tomcat when the system occupy many memory resource. To avoid this, we can dedicate how much memory tomcat can use. 1. add JAVA_OPTS='-Xms1024m -Xmx1024m' in catalina.sh 2. add set JAVA_OPTS=-Xms128m -Xmx350m in catalina.bat 3. use tomcat service(tomcat.exe) which read JAVA_OPTS from regedit table. add -Xms1024m -Xmx1024m ...

This was posted under category: Java  |  Read Full Story  |  0 Comments