All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.tio.boot.http.handler.AopControllerFactory Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version
package com.litongjava.tio.boot.http.handler;

import com.litongjava.jfinal.aop.Aop;
import com.litongjava.tio.http.server.mvc.intf.ControllerFactory;

public class AopControllerFactory implements ControllerFactory {

  @Override
  public Object getInstance(Class controllerClazz) throws Exception {
    return Aop.get(controllerClazz);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy