提交 2ed5205f 编写于 作者: O o2null

Merge branch 'fix/splitValueList' into 'wrdp'

修正splitValueList的赋值错误

See merge request o2oa/o2oa!2475
......@@ -73,7 +73,7 @@ public class ApplicationServer extends ConfigObject {
@FieldDescribe("暴露jest接口.")
private Boolean exposeJest;
@FieldDescribe("是否启用长连接,默认false.")
@FieldDescribe("是否启用长连接,默认true.")
private Boolean persistentConnectionsEnable;
public Boolean getPersistentConnectionsEnable() {
......
......@@ -152,6 +152,11 @@ public class Work extends SliceJpaObject implements ProjectionInterface {
}
public List<String> getSplitValueList() {
//这里调用必须重新指向一次,如果使用
//Work copy = XGsonBuilder.convert(work, Work.class);
//copy.copyTo(this, JpaObject.id_FIELDNAME);
//这样的方法调用,那么在运行完成以后copy.splitValueList不再指向this.getProperties().getSplitValueList()
this.splitValueList = this.getProperties().getSplitValueList();
return this.splitValueList;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册