搜尋

首頁  >  問答  >  主體

java - spring操作資料庫顯示中文亂碼的問題?

作業系統: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編碼,為什麼會出現這種問題呢?

我想大声告诉你我想大声告诉你2745 天前492

全部回覆(1)我來回復

  • 習慣沉默

    習慣沉默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

    回覆
    0
  • 取消回覆