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

com.litongjava.tio.http.server.router.HttpRequestGroovyRouter Maven / Gradle / Ivy

There is a newer version: 3.7.3.v20241201-RELEASE
Show newest version
package com.litongjava.tio.http.server.router;

import com.litongjava.tio.http.server.handler.HttpRequestHandler;

/**
 * 从数据库中加载路由
 * @author Tong Li
 *
 */
public interface HttpRequestGroovyRouter {

  /**
   * 添加路由
   * @param path
   * @param handler
   */
  public void add(String path, HttpRequestHandler handler);

  /**
   * 查找路由
   * @param path
   * @return
   */
  public HttpRequestHandler find(String path);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy