是否可以在角度4中获取带注释的组件或服务?
在java中,我们可以通过反思来做到这一点。
Reflections reflections = new
Reflections("my.project.prefix");
Set<Class<?>> annotated =
reflections.getTypesAnnotatedWith(Controller.class);
for (Class<?> controller : annotated) {
RequestMapping request =
controller.getAnnotation(RequestMapping.class);
String mapping = request.name();
}
我想要(通过id)对某些服务进行anotate,然后想要通过id获取服务实例。