I'm making a Java program and trying to retrieve chinese character from MSSQL and Im using Mybatis instead of pure jdbc class. So, I set xml file to set up basic informations
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${source.db.driver.class}" />
<property name="url" value="${source.db.url}" />
<property name="username" value="${source.db.username}" />
<property name="password" value="${source.db.password}" />
<property name="driver.encoding" value="EUC-KR"/>
</dataSource>
Everything works fine. However all chinese characters I retrieve are bunches of symbols, not perfect chinese character... How can I fix this??