Ce contenu n'est pas disponible dans la langue sélectionnée.
Appendix B. AccountService Example
Abstract
The
AccountService example class illustrates how you can use Spring JdbcTemplate class to access a JDBC data source.
B.1. AccountService Example Code Copier lienLien copié sur presse-papiers!
Copier lienLien copié sur presse-papiers!
Overview Copier lienLien copié sur presse-papiers!
Copier lienLien copié sur presse-papiers!
The
AccountService class provides a simple example of accessing a data source through JDBC. The methods in this class can be used inside a local transaction or inside a global (XA) transaction.
Database schema Copier lienLien copié sur presse-papiers!
Copier lienLien copié sur presse-papiers!
The
AccountService example requires a single database table, accounts, which has two columns: a name column (containing the account name), and an amount column (containing the dollar balance of the account). The required database schema can be created by the following SQL statement:
CREATE TABLE accounts (name VARCHAR(50), amount INT);
CREATE TABLE accounts (name VARCHAR(50), amount INT);
AccountService class Copier lienLien copié sur presse-papiers!
Copier lienLien copié sur presse-papiers!
Example B.1, “The AccountService Class” shows the complete listing of the
AccountService class, which uses the Spring JdbcTemplate class to access a JDBC data source.
Example B.1. The AccountService Class