springmvc Controller對app用戶端進行請求版本控制

來源:互聯網
上載者:User

標籤:

/** * @author tandg * */@Controllerpublic class MainController extends BaseController {  Logger log = Logger.getLogger(MainController.class);  @Autowired private UserService userService;  @RequestMapping(value="/login.do") public String Login(@RequestParam("v") String version) {  Method m = null;  try {   String currMethodName = Thread.currentThread().getStackTrace()[1].getMethodName();//擷取當前請求的方法名   m = getVersionMethod(currMethodName, version);   return (String) m.invoke(this);  } catch (Exception ex) {   log.error("Abnormal request interface :"+ex.getMessage(), ex);   JSONObject result = new JSONObject();   result.put("Fail", "Abnormal request interface :"+ex.getMessage());   return result.toString();  } }  /**   * 最新版本登入方法   */ public String Login() {  /**   * 處理登入商務邏輯代碼...   */  return null; } /**   * 舊版本登入方法   */ public String Login1_0() {  /**   * 處理登入商務邏輯代碼...   */  return null; }  /**  * 處理請求參數  */ public Map<String, Object> getParamMap(HttpServletRequest req) {  Map paramMap = new HashMap();  paramMap.putAll(req.getParameterMap());  return paramMap; }  /**  * controller 版本選擇  *   * @param currMethodName  * @param version  * @return  * @throws SecurityException  * @throws NoSuchMethodException  */ public Method getVersionMethod(String currMethodName, String version)   throws SecurityException, NoSuchMethodException {  Class c = this.getClass();  Method m = null;  //比對版本,如v=1.0  if (version.equalsIgnoreCase(ServerConfig.VERSION)) {   m = c.getMethod(currMethodName);  } else {   m = c.getMethod(currMethodName + version);  }  return m; }}

springmvc Controller對app用戶端進行請求版本控制

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.