动态注册 spring 控制器的路由
在应用程序运行时动态注册控制器路由是一个有用的功能。这可以通过使用自定义 invocationhandler 和 spring 的 requestmappinghandlermapping 类来实现。
问题:动态注册控制器路由
最初的代码示例可以正常运行,但参数类型是静态定义的,限制了动态性。
解决方法:使用反射获取参数类型
要实现参数类型的动态化,可以使用 Java 反射机制。这样,无需在代码中显式指定参数类型。
修改后的代码如下:
import java.lang.reflect.Method; ... private Class<?> getParameterType(Object handler, String methodName) throws NoSuchMethodException { Method method = handler.getClass().getMethod(methodName); return method.getParameterTypes()[0]; } ... @Override public void run(Object handler) { try { RequestMappingInfo requestMappingInfo = RequestMappingInfo.paths("testing").methods(RequestMethod.GET).build(); Method method = handler.getClass().getMethod("h01", getParameterType(handler, "h01")); requestMappingHandlerMapping.registerMapping(requestMappingInfo, handler, method); } catch (Exception e) { e.printStackTrace(); } }
通过使用 getparametertype 方法,我们动态地获取指定方法的第一个参数类型,从而实现了参数类型的动态化。