Search in sources :

Example 1 with ControllerHolder

use of core.framework.impl.web.ControllerHolder in project core-ng-project by neowu.

the class ModuleContext method route.

public void route(HTTPMethod method, String path, Controller controller, boolean skipInterceptor) {
    new PathPatternValidator(path).validate();
    ControllerInspector inspector = new ControllerInspector(controller);
    new ControllerClassValidator(inspector.targetClass, inspector.targetMethod).validate();
    String action = "http:" + ASCII.toLowerCase(method.name()) + ":" + path;
    httpServer.handler.route.add(method, path, new ControllerHolder(controller, inspector.targetMethod, inspector.controllerInfo, action, skipInterceptor));
}
Also used : ControllerClassValidator(core.framework.impl.web.ControllerClassValidator) PathPatternValidator(core.framework.impl.web.route.PathPatternValidator) ControllerHolder(core.framework.impl.web.ControllerHolder) ControllerInspector(core.framework.impl.web.ControllerInspector)

Example 2 with ControllerHolder

use of core.framework.impl.web.ControllerHolder in project core-ng-project by neowu.

the class APIConfig method service.

public <T> void service(Class<T> serviceInterface, T service) {
    logger.info("create api service, interface={}", serviceInterface.getCanonicalName());
    new WebServiceInterfaceValidator(serviceInterface, context.httpServer.handler.requestBeanMapper, context.httpServer.handler.responseBeanTypeValidator).validate();
    new WebServiceImplValidator<>(serviceInterface, service).validate();
    for (Method method : serviceInterface.getMethods()) {
        HTTPMethod httpMethod = HTTPMethods.httpMethod(method);
        String path = method.getDeclaredAnnotation(Path.class).value();
        Controller controller = new WebServiceControllerBuilder<>(serviceInterface, service, method).build();
        try {
            Class<?>[] parameterTypes = method.getParameterTypes();
            Class<?> serviceClass = service.getClass();
            Method targetMethod = serviceClass.getMethod(method.getName(), parameterTypes);
            String controllerInfo = serviceClass.getCanonicalName() + "." + targetMethod.getName();
            String action = "api:" + ASCII.toLowerCase(httpMethod.name()) + ":" + path;
            context.httpServer.handler.route.add(httpMethod, path, new ControllerHolder(controller, targetMethod, controllerInfo, action, false));
        } catch (NoSuchMethodException e) {
            throw new Error("failed to find impl method", e);
        }
    }
    apiController().serviceInterfaces.add(serviceInterface);
}
Also used : Path(core.framework.api.web.service.Path) HTTPMethod(core.framework.http.HTTPMethod) Method(java.lang.reflect.Method) Controller(core.framework.web.Controller) APIController(core.framework.impl.web.management.APIController) ControllerHolder(core.framework.impl.web.ControllerHolder) HTTPMethod(core.framework.http.HTTPMethod) WebServiceInterfaceValidator(core.framework.impl.web.service.WebServiceInterfaceValidator)

Aggregations

ControllerHolder (core.framework.impl.web.ControllerHolder)2 Path (core.framework.api.web.service.Path)1 HTTPMethod (core.framework.http.HTTPMethod)1 ControllerClassValidator (core.framework.impl.web.ControllerClassValidator)1 ControllerInspector (core.framework.impl.web.ControllerInspector)1 APIController (core.framework.impl.web.management.APIController)1 PathPatternValidator (core.framework.impl.web.route.PathPatternValidator)1 WebServiceInterfaceValidator (core.framework.impl.web.service.WebServiceInterfaceValidator)1 Controller (core.framework.web.Controller)1 Method (java.lang.reflect.Method)1