Package com.cawring.simple.route

Examples of com.cawring.simple.route.Routes


      /* 변수선언 */
      String method = req.getMethod();
      String url    = req.getRequestURI();
     
      /* routes 정보를 가지고 온다. */
      Routes routes = Routes.getInstance();
      RouteVO vo    = routes.get(method, url);
     
      /* 해당 컨트롤러 접근 */
      Class<?> controller = Class.forName(vo.getController());
      Object instance = controller.newInstance();
     
View Full Code Here

TOP

Related Classes of com.cawring.simple.route.Routes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.