JPA
全稱Java Persistence API。
JPA通過JDK 5.0註解或XML描述對象-關係表的映射關係,並將運行期的實體物件持久化到資料庫中。
百度百科:http://baike.baidu.com/view/1036852.htm
JTA
即Java Transaction API,譯為Java事務API。
JTA允許應用程式執行分散式交易處理——在兩個或多個網路電腦資源上訪問並且更新資料。JDBC驅動程式的JTA支援極大地增強了資料訪問能力。
百度百科:http://baike.baidu.com/view/512788.htm
JMS
即JavaMessage Service(Java Message Service)。
JMS(Java Messaging Service)是Java平台上有關面向訊息中介軟體的技術規範,它便於訊息系統中的Java應用程式進行訊息交換,並且通過提供標準的產生、發送、接收訊息的介面簡化公司專屬應用程式的開發,翻譯為JavaMessage Service。
百度百科:http://baike.baidu.com/view/157103.htm
CRUD
CRUD是指在做計算處理時的增加(Create)、查詢(Retrieve)(重新得到資料)、更新(Update)和刪除(Delete)幾個單詞的首字母簡寫。主要被用在描述軟體系統中資料庫或者持久層的基本操作功能。
英文釋義
In computing, CRUD is an acronym for create, retrieve, update, and delete. It is used to refer to the basic functions of a database or persistence
layer in a software system.
C reate new records
R etrieve existing records
U pdate existing records
D elete existing records.