Results 78 comments of Adrodoc

> HI @Adrodoc is anyone working on this issue , or i can add your proposal solution into respective interface I am not aware of anyone working on this.

I think this is a duplicate of #112.

@haraldk Your min version seems to be incorrect, you are using a 10.0.1 jre, which is 10000100 in the getdown version format, but in your getdown.txt you say that version...

Is there a best practice on how to handle system properties like `java.naming.provider.url` that should point to the server where the app is deployed? Or is there a supported way...

As an example: updating from java 7u40 to java 10.0.2 you get the error: ``` /lib/ext exists, extensions mechanism no longer supported; Use -classpath instead. .Error: Could not create the...

There is a really nice workaround for this if you are using `@GeneratePojoBuilder(withBuilderProperties=Builder.class)`. Add a method called `$null()`: ```java public static Builder $null() { return () -> null; } ```...

@mkarneim it might be a good idea to post a compiler error on the Annotation of the Pojo wich suggests the workaround. That way it is easier for developers and...

Because I run into this special case again and again (in my company) i think it might be worth handling BoxClasses as a special case here.

As you pointed out my original issue of having a primitive and a non primitive setter was just a special case of having two different "properties" with the same name....