Dean
Dean
Our concern with using that project is we do not have access to Gradle where we work, so we cannot deploy it. Do you have a build agnostic project example?...
Thank for your response. I have tried creating a skeleton project with the swagger editor project, unfortunately, there's a [bug](https://github.com/swagger-api/swagger-editor/issues/530) that prevents its creation. Also, I wouldn't expect `mvn clean...
I wanted to document my continued troubles using the springfox-demo project. I pulled down the latest code and opened it into eclipse. I then opened a terminal and issued the...
@dilipkrish - If anything, I think that proves the point I was trying to make. Why do we need to run that script instead of just using native Gradle? Also,...
I also wanted to document more confusion we are facing in regards to trying to figure out dependencies. To simplify the project, I would think adding the controllers into the...
@dilipkrish, thank you for such a thorough response. I will have to do some research on the links provided. I appreciate the time you took responding. Thanks again
An Object's property that has a null or empty value DOES get sent as EMPTY if the property type is a Map. A simple example is below: ``` public class...
Perfect example. The initialized, but empty `LinkedHashMap` is the issue I am seeing. Thank you I still think this is a valid issue as this will cause me to have...
As a work-around I've had to do the following, which ONLY sets the value to NULL if it's an empty `Map`. I then traverse through the props and remove any...
I still think that we need the ability to remove or ignore null or empty properties when serializing. This can be accomplished through @Field or any other annotation.