Spring Projects Issues

Results 1569 comments of Spring Projects Issues

**[Jens Schauder](https://jira.spring.io/secure/ViewProfile.jspa?name=schauder)** commented Right now I want to keep it package private. The reason is that I see quite some changes coming for the SqlGenerator and not having to worry...

**[Mihhail Verhovtsov](https://jira.spring.io/secure/ViewProfile.jspa?name=infeligo)** commented I had a similar use-case where I wanted to support Postgres's JSONB columns. I didn't want to use a wrapper for my collections as its makes data...

**[Jens Schauder](https://jira.spring.io/secure/ViewProfile.jspa?name=schauder)** commented I think there are a couple of different things that we should try to keep separate. 1.  adding conversions for properties (not based on the type of...

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented `saveAll` is defined on [CrudRepository](https://github.com/spring-projects/spring-data-commons/blob/master/src/main/java/org/springframework/data/repository/CrudRepository.java#L48). Care to elaborate on why you cannot use that one? Right now, we do not declare a `JdbcRepository` interface as there was...

**[benzen](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER49614)** commented Sure, i did'nt want to use that one because of the return type. The default one return an Iterable, I prefer using a List in order to call...

**[Dimo Velev](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER49578)** commented [benzen](https://jira.spring.io/secure/ViewProfile.jspa?name=benzen) I guess you know that you can easily convert to stream using https://docs.oracle.com/javase/8/docs/api/java/util/stream/StreamSupport.html - I did that in a default interface method on the repo for...

**[benzen](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER49614)** commented I ended up making a list and maping through it, calling save and returning a list of save entity. One or the other is fine by me. My...

**[Jens Schauder](https://jira.spring.io/secure/ViewProfile.jspa?name=schauder)** commented I'm currently not sure how such support would look like. Could you be a little more specific what you would like to see?

**[srinivas kvs](https://jira.spring.io/secure/ViewProfile.jspa?name=srinivas_vsk)** commented Think if we could somehow define a ColumnType to mark it as Json Type, then behind the scene when you are actually generating the insert/ update statement...

**[Jens Schauder](https://jira.spring.io/secure/ViewProfile.jspa?name=schauder)** commented So if we frame the goal Postgres independently you are looking for for a way to make generated SQL dependent on the "type" of the attribute that...