Changes between Version 4 and Version 5 of S2S_PERSISTENCE_COMMONS_R0
- Timestamp:
- 11/22/08 11:30:02 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S2S_PERSISTENCE_COMMONS_R0
v4 v5 8 8 9 9 == Overview == 10 There will be singleton class that will provide the connections and communications with the database. There will be Data Access Objects that 11 represent the persistence layer and communicate with the database. They will persist, update, delete and retrieve the objects used by the service and view layers. The scheme of the database will be created and used from the DAO(Data Access Object)s. 10 * There will be layer that uses JDBC directly, "Database" layer or "JDBC" layer. 11 * There will be Data Access Objects that represent the persistence layer in higher level. 12 * The primal scheme of the database must be created.. 13 * Some of the queries will be created. And a way for keeping them will be developed in later revision. 12 14 13 15 == Task requirements == 14 Create the manager that communicates with the database. 15 Create the DAOs that will be needed from the other tasks in this revision. 16 Create the database schema to the extend needed by the other tasks in R0 16 * Create the JDBC layer using Derby( JavaDB ). 17 * Create the DAOs (Data Access Objects) representing the persistence layer. 18 * Create the database schema to the extend needed by the other tasks in R0. 19 * Think of a way to store the queries; may be in configuration files? 17 20 18 21 == Task result == 19 The end result will be interface for communication with the database. The DAO objects will be our API for accessing the DB. 22 The end result will be interface for communication with the database. The DAO objects will be our API for accessing the DB. There will be basic database. 20 23 21 24 == Implementation idea == 22 The DAOs will be singleton that execute queries to the database using the DatabaseManager which is also singleton. The singleton 23 design pattern is used because of the many queries that will be executed at a time. 25 The DAOs will execute queries to the database using the JDBC(Database) layer. 24 26 25 27 == Related == 26 ^(Here you can add related tasks that could be useful or helpful.)^ 28 The schema must be useful for [[TicketQuery(summary=S2S_CORE_SECURITY_R0, compact)]] 29 27 30 28 31 == How to demo ==