Fangjie Hu
8 years ago
2 changed files with 61 additions and 0 deletions
@ -0,0 +1,43 @@ |
|||||||
|
package com.fr.dependservice; |
||||||
|
|
||||||
|
import com.fr.base.FRContext; |
||||||
|
import com.fr.general.FRLogger; |
||||||
|
import com.fr.plugin.dependence.PluginServiceCreator; |
||||||
|
|
||||||
|
import java.util.HashMap; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by hufan on 2016/9/9. |
||||||
|
*/ |
||||||
|
public abstract class PluginService implements PluginServiceCreator { |
||||||
|
@Override |
||||||
|
public String remoteServiceAction(String req) throws Exception { |
||||||
|
HashMap<String, String> para = new HashMap<String, String>(); |
||||||
|
para.put("op", "fr_remote_design"); |
||||||
|
para.put("cmd", "design_get_plugin_service_data"); |
||||||
|
para.put("serviceID", getServiceID()); |
||||||
|
para.put("req", req); |
||||||
|
return PluginServiceUtils.getDataFormRemote(para); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 服务ID |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
protected abstract String getServiceID(); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取数据 |
||||||
|
* @param req |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public String fetchServiceData(String req) { |
||||||
|
try { |
||||||
|
//设置请求数据,这个地方可能涉及到多线程同时到达,拿错请求和回应的问题
|
||||||
|
return FRContext.getCurrentEnv().pluginServiceAction(this, req); |
||||||
|
//返回
|
||||||
|
} catch (Exception e) { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.fr.dependservice; |
||||||
|
|
||||||
|
import com.fr.base.FRContext; |
||||||
|
import com.fr.env.RemoteEnv; |
||||||
|
import com.fr.general.IOUtils; |
||||||
|
|
||||||
|
import java.io.InputStream; |
||||||
|
import java.util.HashMap; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by hufan on 2016/9/9. |
||||||
|
*/ |
||||||
|
public class PluginServiceUtils { |
||||||
|
public static String getDataFormRemote(HashMap<String, String> para) throws Exception { |
||||||
|
InputStream inputStream = ((RemoteEnv)FRContext.getCurrentEnv()).getDataFormRemote(para); |
||||||
|
return IOUtils.inputStream2String(inputStream); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue