JDBC连接Mysql6 com.mysql.cj.jdbc.Driver, 需要指定时区serverTimezone:
driverClassName=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/test?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false
username=root
password=123456
使用BeanPropertyRowMapper,实体类必须要写set和get,
原本还想直接使用public的字段就可以了,结果发现出来的结果全是NULL
网友评论