Github user StephanEwen commented on the issue:

    https://github.com/apache/flink/pull/2823
  
    I think we can do a more solid approach to that. Would be good to not to 
rely on the context class loader.
    
      1. You could use the classloader of the component type directly, i.e.,
      `classArray = (Class<OUT>) Class.forName("[" + className, true, 
componentClass.getClassLoader());`
    
      2. You can directly obtain the array class via this trick:
      `classArray = (Class<OUT>) 
(java.lang.reflect.Array.newInstance(componentClass, 0).getClass());`
    



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to