<property name="connection.url">
jdbc:mysql://localhost:3306/oa?useUnicode=true&characterEncoding=utf8
</property>
发现还是不行,原来是要改成这样:
<property name="connection.url">
<![CDATA[
jdbc:mysql://localhost:3306/oa?useUnicode=true&characterEncoding=utf8
]]>
jdbc:mysql://localhost:3306/oa?useUnicode=true&characterEncoding=utf8
</property>
发现还是不行,原来是要改成这样:
<property name="connection.url">
<![CDATA[
jdbc:mysql://localhost:3306/oa?useUnicode=true&characterEncoding=utf8
]]>
</property>
参考文章:http://blog.csdn.net/lirui0822/article/details/9097185