Java 代码:
Session session = sessionFactory.getCurrentSession();//注意
session.beginTransaction();
System.out.println(dict.getDtChnValue());
session.update(dict);;
System.out.println(dict.getDtChnValue());
session.getTransaction().commit();
CONSOLE代码:
男
男
Hibernate:
update
dictionary
set
dt_key=?,
dt_eng_value=?,
dt_chn_value=?,
dt_type=?,
dt_name=?
where
id=?
用的是mysql数据库,但是在数据库里面就是乱码,保存了以后,
------解决思路----------------------