美文网首页spring boot
初学SpringBoot之连接MySQL

初学SpringBoot之连接MySQL

作者: 老米拉 | 来源:发表于2018-12-11 21:15 被阅读3次

    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

    相关文章

      网友评论

        本文标题:初学SpringBoot之连接MySQL

        本文链接:https://www.haomeiwen.com/subject/rdcyhqtx.html