类 MvcMappingRegister
java.lang.Object
com.codingapi.springboot.fast.mapping.MvcMappingRegister
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidaddMapping(String url, org.springframework.web.bind.annotation.RequestMethod requestMethod, Object handler, Method method) add mvc mappingvoidremoveMapping(String url, org.springframework.web.bind.annotation.RequestMethod requestMethod) remove mvc mapping
-
构造器详细资料
-
MvcMappingRegister
public MvcMappingRegister()
-
-
方法详细资料
-
addMapping
public void addMapping(String url, org.springframework.web.bind.annotation.RequestMethod requestMethod, Object handler, Method method) add mvc mapping- 参数:
url- mapping urlrequestMethod- request methodhandler- executor handlermethod- executor method
-
removeMapping
public void removeMapping(String url, org.springframework.web.bind.annotation.RequestMethod requestMethod) remove mvc mapping- 参数:
url- mapping urlrequestMethod- request method
-