- 浏览: 5673 次
- 性别:
- 来自: 南京
最新评论
文章列表
1. LinearLayout 线性布局
android:orientation=horiaontal 水平布局 || vertical 垂直布局
2. TableLayout 表格布局
属性 :
android:stretonColumns = "0" 如果列内容不够充满整个表格行, 使用 第0列伸展填充表格列
子标签:
<TableRow> 表格行
3. 控件基本属性
android:layout_width= ...
public interface CommonMng {
/**
* 根据主键进行单个对象查询
*
* @author guduxing890
* @param clazz
* EntityClass
* @param pk
* 主键
* @return
* @see [类、类#方法、类#成员]
*/
pu ...
在做Hibernate 映射对象转换json 的时候,常常会遇到如下异常:
net.sf.json.JSONException: There is a cycle in the hierarchy!
at net.sf.json.util.CycleDetectionStrategy$StrictCycleDetectionStrategy.handleRepeatedReferenceAsObject(CycleDetectionStrategy.java:97)
at net.sf.json.JSONObject._fromBean(JSONObject.java:859)
...
ps:如需转载,请以超链接形式标明文章原始出处和作者
折腾了半个小时,终于把MyEclipse 里面的项目迁移到 Eclipse 里面了,做个记录,以供有需要的人士作为参考。
1. 删除 工程的 .myeclipse .project
2. 用eclipse for ee 新建 web B 工程
拷贝 B工程下的 .project 到 原工程目录
2.1打开 .project 改写 name 为 A 项目的名称
3. 拷贝 B 工程下 .setting org.ec ...