做实验的时候,利用jdbcTemplate开发了一个简单的方法,用于查看当前链接的时区,感觉还不错,就简单整理一下:
1
2
3
4
5
6
7
8
9
10
11
12
|
List<String> timezones = jdbcTemplate.query(
"show time zone",
new RowMapper<String>() {
@Override
public String mapRow(ResultSet rs, int rowNum) throws SQLException {
return rs.getString(1);
}
});
System.out.println(timezones);
|