架构设计,相关选择

Email:[email protected]

JAVA  Projects:
Project 1:
    Project Summary:This project is a e-government system.It is designed by me.This system have three layer structure. As follow.

架构设计,相关选择_第1张图片

   Action Layer:
 This layer of the mian work is to accept request and forward.Do not do the business processing.
 Packaging request parameters and send to Servicce Layer. Service Layer give back parameters for the Action Layer to mix View and Model send to customer.
 This layer use Model POJO OBJECT

Service Layer:
 This layer of the work is to do business processing.
 Check messages of parameters
 Transaction Processing
 Packaging service parameters then send to Dao Layer
 Trsanform Domain Pojo Object To Model Pojo Object

Dao Layer:
 This layer supply the Service Layer with database operation method.So this layer always has very short method.
 This layer use Domain POJO OBJECT

Project framework:
As Follow.


架构设计,相关选择_第2张图片

Project Module division:


架构设计,相关选择_第3张图片

你可能感兴趣的:(架构设计)