I am using embedded Cassandra 3.11.7 with spring boot.
I want to set KST time which is UTC + 9 in Cassandra timezone.
It looks like kst time on the web screen, but
When inserting the actual Cassandra, it is stored as utc that is -9 hours longer than the current time, so it is not possible to get an accurate value when looking up the date.
So I'm looking for a way to set the Cassandra timezone.
I have a cassandra configuration and webFlux.
@Configuration @EnableReactiveCassandraRepositories @PropertySource(value = "file:${sf1.manager.path}/conf/cassandra.properties", ignoreResourceNotFound = true) public class CassandraConfig extends AbstractReactiveCassandraConfiguration {
Thanks in advance for the good answer.