作業系統:ubuntu
IDE:idea
資料庫:Mysql
我用php作業資料庫的時候中文顯示是沒有問題的,可以正常顯示中文:
但是我學習spring的時候操作資料庫的時候中文就會出現問號,無法正常顯示
#我在spring中寫的資料庫配置
# 在项目初始化时,重新创建数据表
spring.jpa.hibernate.ddl-auto=update
# 指定连接的类型为mysql 连接的地址为:localhost 端口为3306 ,数据为springmvc
spring.datasource.url=jdbc:mysql://localhost:3306/springmvc
# 用户名为root
spring.datasource.username=root
# 密码为空
spring.datasource.password=
# 显示SQL语句
spring.jpa.show-sql=true
我的資料庫和idea都是用的utf_8編碼,為什麼會出現這種問題呢?
習慣沉默2017-05-16 13:31:37
修改
spring.datasource.url=jdbc:mysql://localhost:3306/springmvc
為
spring.datasource.url=jdbc:mysql://localhost:3306/springmvc?useUnicode=true&characterEncoding=utf-8