資料來源配置:在jboss/doc/examples/jca,如果你的是mysql資料庫,則選mysql-ds.xml
<?xml version="1.0"encoding="utf-8"?>
defaultmysqlds
jdbc:mysql://localhost:3306/itcast?useunicode=true&characterencoding=utf-8
org.gjt.mm.mysql.driver
root
123456 3
100transaction_read_uncommitted
transaction_read_committed
transaction_repeatable_read
transaction_serializable
transaction_serializable-->
org.jboss.resource.adapter.jdbc.vendor.mysqlexceptionsorter
資料來源的起名必須遵守規定,如mysql-ds.xml,即所有資料來源的字尾名都必須是ds.xml結尾的.
把資料庫驅動包拷貝到配置項的lib目錄下.如default/lib
然後把資料來源的配置檔案放到deploy目錄下面.重啟jobss即可.
然後可以進到jboss的管理頁面進行管理.注意在這裡進行更改的話,是只有這一次執行期間才是有效的,如果關閉了則失效了,如果要永久性的生效的話,那麼只能在ds.xml配置檔案中進行更改
JBOSS中配置MSSQL資料來源
1 去d jboss 5.0.0.ga jdk6 jboss 5.0.0.ga docs examples jca 目錄下找到mssql ds.xml檔案,修改其中的引數,包括連線名稱 使用者名稱 密碼等。jcuckoo ds jdbc microsoft sqlserver localhost 1...
如何在Spring boot中替換資料來源
1 替換dbcp和c3p0。druid提供了乙個高效 功能強大 可擴充套件性好的資料庫連線池。2 可以監控資料庫訪問效能,druid內建提供了乙個功能強大的statfilter外掛程式,能夠詳細統計sql的執行效能,這對於線上分析資料庫訪問效能有幫助。3 資料庫密碼加密。直接把資料庫密碼寫在配置檔案...
在JBOSS中配置資料來源 連線池
資料來源配置 在路徑jboss doc examples jca下,如果你的是 mysql 資料庫,則選mysql ds.xml defaultmysqlds jdbc mysql localhost 3306 studentdb?useunicode true characterencoding ...