赞
踩
话不多说,直接上代码
public Map<String, Object> SelectModelBySchoolIdJSONResult(TempUser tempUser, String clsSchoolId, List list) throws Exception {
Map<String, Object> resultMap = new HashMap<String, Object>();
// 远程调用userCenter中的方法
String resultSemester = HttpTool.requestGet(USER.getGetSelectModelBySchoolIdJSONResult() + “?” + “clsSchoolId=” + clsSchoolId, null);
List schools = (List)JSONObject.parse(strSchoolList);
public static String requestGet(String url, Map<String, String> headers)
throws IOException {
return requestGet(null, url, headers, DEFAULT_CHARSET, false,
DEFAULT_CONNECTION_TIMEOUT, DEFAULT_SOCKET_TIMEOUT);
}
这样就可以使用其他模块的的方法了,仅限于没有服务化方法,又不直接复制粘贴冗余代码的情况下使用,但是启动的时候得把被调用的模块一起启动了才可以调用!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。