JBossデータソースの設定

C:\jboss-3.2.3\docs\examples\jca\mysql-ds.xmlをC:\jboss-3.2.3\server\default\deployにコピーし、編集します。
今回は以下のように編集しました。

<?xml version="1.0" encoding="UTF-8"?>
<datasources>
  <local-tx-datasource>
    <jndi-name>MySql-hellodb</jndi-name>
    <connection-url>jdbc:mysql://localhost:3306/hellodb</connection-url>
    <driver-class>org.gjt.mm.mysql.Driver</driver-class>
    <user-name>helloUser</user-name>
    <password>helloUser</password>
    <connection-property name="useUnicode">true</connection-property>
    <connection-property name="characterEncoding">Windows-31J</connection-property>
  </local-tx-datasource>
</datasources>