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

io.jboot.web.controller.JbootControllerManager Maven / Gradle / Ivy

/**
 * Copyright (c) 2015-2020, Michael Yang 杨福海 ([email protected]).
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.jboot.web.controller; import com.google.common.collect.BiMap; import com.google.common.collect.HashBiMap; import com.jfinal.core.Controller; import com.jfinal.core.ControllerFactory; /** * @author Michael Yang 杨福海 ([email protected]) * @version V1.0 * @Package io.jboot.web */ public class JbootControllerManager extends ControllerFactory { private static final JbootControllerManager ME = new JbootControllerManager(); public static JbootControllerManager me() { return ME; } private JbootControllerManager() { } // public Controller getController(Class controllerClass) throws InstantiationException, IllegalAccessException { // Controller controller = controllerClass.newInstance(); // return Aop.inject(controller); // } private BiMap> controllerMapping = HashBiMap.create(); public Class getControllerByPath(String path) { return controllerMapping.get(path); } public String getPathByController(Class controllerClass) { return controllerMapping.inverse().get(controllerClass); } public void setMapping(String path, Class controllerClass) { controllerMapping.put(path, controllerClass); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy