com.litongjava.tio.boot.http.handler.AopControllerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
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);
}
}