In my Spring Boot microservice I have jdbc connection configured to MSSQL database. There are about 10 different queries and among the fields there are some timestamps.
The server is located in Switzerland, all timestamps are in Swiss time.
My service need to return UTC time but all data I get from MSSQL is without timezone value, it becomes UTC time after mapping query results.
Can database connection be configured to set timezone of the server so those dates will be automatically considered in Swiss timezone?
I'd like to find smarter way than updating all queries by converting time in mapper manually.