Spring Projects Issues

Results 1569 comments of Spring Projects Issues

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented We introduced with version 3.0 a `NamingStrategy` interface that we should extend. Adding a default interface method retains backward compatibility, as `NamingStrategy` can be implemented by application...

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented Not sure I follow. Spring Data for Apache Cassandra does not support `DELETE` queries through query derivation. As of now we only support `SELECT` queries. To the...

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented Moved the ticket to https://jira.spring.io/browse/DATACASS as it's not related to JPA

**[SanjayAgnani](https://jira.spring.io/secure/ViewProfile.jspa?name=sanjay_agnani)** commented So it means using CrudRepository/CassandraRepository only select query can be made , for inserting/updating with TTL options on has to use CassandraOperations Interface with Insert/Update options. Do we...

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented There are a couple of issues you're mentioning here. Please check out our issue tracker/reference documentation the next time as all details regarding CQL logging and auditing...

**[Sergio Aguayo](https://jira.spring.io/secure/ViewProfile.jspa?name=sergioag)** commented [Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de) I was thinking on implementing this by adding version of some function in CassandraRepository/ReactiveCassandraRepository with additional parameter (int ttl). Candidates for this would include: save(S)...

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented Can you outline your use-case? Are you using typically a fixed TTL? Or a TTL per entity? We should discuss what is going to be addressed before...

**[Łukasz Świątek](https://jira.spring.io/secure/ViewProfile.jspa?name=l.swiatek)** commented Im also interested is this feature.   We are using both fixed TTL for all entities of given type, and in other cases dynamic ttl per entity. But,...

**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented We're now on Cassandra driver 4, so I wonder whether we should introduce a execution profile annotation to specify the execution profile to apply profiles on various...

**[Paweł Stawicki](https://jira.spring.io/secure/ViewProfile.jspa?name=amorfis)** commented Some solution could be to set the property via setter, not directly setting an entity field. This way null could be handled in setter by entity author