Browse Source

update

master
Fangjie Hu 8 years ago
parent
commit
dbc3a0fbf7
  1. 10
      designer_base/src/com/fr/dependservice/PluginService.java

10
designer_base/src/com/fr/dependservice/PluginService.java

@ -31,13 +31,7 @@ public abstract class PluginService implements PluginServiceCreator {
* @return * @return
*/ */
@Override @Override
public String fetchServiceData(String req) { public String fetchServiceData(String req) throws Exception {
try { return FRContext.getCurrentEnv().pluginServiceAction(this, req);
//设置请求数据,这个地方可能涉及到多线程同时到达,拿错请求和回应的问题
return FRContext.getCurrentEnv().pluginServiceAction(this, req);
//返回
} catch (Exception e) {
return null;
}
} }
} }

Loading…
Cancel
Save