Christophe Bornet
Christophe Bornet
So I have this sample code in swagger models ```java public class Example { private String summary = null; private String description = null; private Object value = null; private...
Yes it's probably better to have it outside of swagger-models ATM. I think it could be useful to have it in swagger-core as, as you said, there are some places...
Thanks for your link but it seems it's only for format validation, not conversion. I think what would be needed is to enhance Operation::get_path_parameter_types() to also read the format and...
:+1: for supporting this feature.
@AdelineJolie an alternative to JsonViews is to map DTOs to the model using a library such as [mapstruct](http://mapstruct.org/). (for information, mapstruct is used internally by springfox) As I see it,...
Better : I found [this little gem of a library](https://github.com/marschall/threeten-jpa/tree/master/threeten-jpa-zoned-hibernate) which makes it as simple as ```java @Type(type = ZonedDateTimeType.NAME) @Columns(columns = { @Column(name = "my_date"), @Column(name = "my_date_zoneid") })...
> Just a question: could we just keep the "myDate" setter? Yes that setter will still be here. I just didn't show it for simplicity. > I wonder if the...
I've got something almost ready. Just need some time to finish it.
No. The liquibase type `timestamp with time zone` corresponds to a time offset (+01:00, +02:00, etc...), not a zone id (PDT, CET, etc...) which takes DST in consideration. If you're...
Sorry I forgot about this issue. I’ll have a look again.