Set oracle and postgresql drivers to <scope>provided</scope>
Ok, thanks for the input. FYI, I think I will try to do something like this: @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @interface Delegate { Class<? extends Annotation> value(); } @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER) @Delegate(UiAttribute.class) public @interface MyUiAttribute { String[] name(); String value(); } When I translate methods parameters to bean properties with ByteBuddy, all @MyUiAttribute annotations will be replaced...
In the end, what I did was to use ByteBuddy to generate a dynamic bean class from the method: each parameter of the method is translated into a bean property (getter, setter and annotations). Once the form is filled, I collect all properties into an Object[] so that I can invoke the method via reflection. The only problem is that I cannot annotate method parameters with annotations like @UiLabel, @UiRequired... as those can only be used on fields and methods (not parameters). Do you think allowing...
Hi, Do you think it would be possible, with the current version of metawidget, to create an inspector for java.lang.reflect.Method? A form with all the method's parameters could then be generated and would be used to fill/create an Object[]. That array could then be used to call Method.invoke(target, args). Of course, all @UiXXX annotations should be allowed on ElementType.PARAMETER. Using java 8 java.lang.reflect.Parameter.getName() would also be nice. Ultimately, this could be used to generate...
Hi, I need to export some data from one environment to another environment but some...
OK, thanks I will try it!
Hi, I need to export some data from one environment to another environment but some...
Ok, I will check with the people who authored the schemas if they can make the needed...