freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于ssh框架的人力資源管理系統(tǒng)的設(shè)計與實現(xiàn)畢業(yè)論文-文庫吧資料

2024-09-02 14:17本頁面
  

【正文】 class=bulletinAction method=bulletinAdd result name=success/jsp//result /action ! 刪除公告 action name=bulletinDelete class=bulletinAction method=bulletinDelete result name=success/jsp//result /action ! 公告詳情 action name=bulletinDetail class=bulletinAction method=bulletinDetail result name=success/jsp//result /action ! 準備添加郵件 action name=preMailAdd class=mailAction method=preMailAdd result name=preOk/jsp//result /action ! 添加郵件 action name=mailAdd class=mailAction method=mailAdd result name=success/jsp//result /action ! 分頁顯示發(fā)件箱 action name=preMailMan class=mailAction method=preMailMan result name=success/jsp//result /action ! 刪除郵件 action name=mailDelete class=mailAction method=mailDelete result name=success/jsp//result /action ! 郵件詳情 action name=mailDetail class=mailAction method=mailDetail result name=success/jsp//result /action ! 分頁顯示收件箱 action name=preMailReMan class=mailAction method=preMailReMan result name=success/jsp//result /action ! 郵件接收詳情 action name=mailReDetail class=mailAction method=mailReDetail result name=success/jsp//result /action /package /struts Spring 配置文件 : ?xml version= encoding=UTF8? beans xmlns= xmlns:xsi= xmlns:p= xsi:schemaLocation= ! 數(shù)據(jù)源 bean id=dataSource class= property name=driverClassName value= /property property name=url value=jdbc:property property name=username value=root/property property name=password value=1/property /bean bean id=sessionFactory class= property name=dataSource ref bean=dataSource / /property property name=hibernateProperties props prop key= /prop /props /property property name=mappingResources list value/design/po//value value/design/po//value value/design/po/。這樣無論前端如何變化,模型層只需很少的改動,并且數(shù)據(jù)庫的變化也不會對前端有所影響,大大提高了系統(tǒng)的可復用性。模型驅(qū)動的 Action 要求 Action 實現(xiàn)ModelDriven 接口,假如登錄頁面需要傳輸參數(shù) username 和 userpass,我們把這 2 個參數(shù)封裝在一個數(shù)據(jù)的 JavaBean 中,然后在 Action 中定義該 JavaBean 為 Model 即可。而在持久層 中,則依賴于 Hibernate 的對象化映射和數(shù)據(jù)庫交互,處理 DAO 組件請求的數(shù)據(jù),并返回處理結(jié)果。 (圖 4111 經(jīng)典 MVC 結(jié)構(gòu)) (圖 4112 struts2【 web work】對 MVC 的實現(xiàn) ) 系統(tǒng)的基本業(yè)務(wù)流程是: 在 表示層 中,首先通過 JSP 頁面實現(xiàn) 交互界面 ,負責傳送請求 (Request)和接收響應(yīng) (Response),然后 Struts 根據(jù)配置文件 ()將 Action Servlet 接收到的 Request 委派給相應(yīng)的 Action處理。 其中使用 Struts 作為系統(tǒng)的整體基礎(chǔ)架構(gòu),負責 MVC( Model + View + Control) 的分離,在 Struts 框架的模型部分,控制業(yè)務(wù)跳轉(zhuǎn),利用 Hibernate 框架對 持久層 提供支持, Spring做管理,管理 struts 和 hibernate。 4.技術(shù)背景及其實現(xiàn) SSH 框架 SSH 框架的介紹 SSH 為 struts、 spring、 hibernate 構(gòu)成的 一個 開源 集成 框架。 alter table emp add constraint FK_emp_job foreign key (job_id) references job (job_id) on delete restrict on update restrict。 alter table calendar add constraint FK_emp_calendar foreign key (emp_id) references emp (emp_id) on delete restrict on update restrict。 create table mail ( mail_id int not null auto_increment, emp_id int not null, mail_toid int not null, mail_title varchar(20) not null, mail_content text not null, mail_sendtime timestamp not null, mail_isread tinyint, primary key (mail_id) )。 create table emp ( emp_id int not null auto_increment, dept_id int not null, job_id int not null, emp_code int not null, emp_name varchar(20) not null, emp_pwd varchar(6) not null, emp_joindate timestamp not null, emp_sal decimal(8,2) not null, emp_m decimal(8,2) not null, emp_mgr int not null, emp_tel varchar(11) not null, emp_sex varchar(4) not null, emp_birthday date not null, primary key (emp_id) )。 create table calendar ( calendar_id int not null auto_increment, emp_id int not null, calendar_title varchar(20) not null, calendar_content text not null, calendar_time timestamp not null, calendar_responseid int not null, calendar_response text, calendar_isresponse tinyint not null, primary key (calendar_id) )。 drop table if exists mail。 drop table if exists emp。 drop table if exists calendar。其余屬性字段按照現(xiàn)實要求實現(xiàn)各自的約束。 概念模型 (圖 :概念模型) 物理模型 (圖 :物理模型) 數(shù)據(jù)字典 根據(jù)數(shù)據(jù)模型,每個實體( entity)對應(yīng)一張數(shù)據(jù)表,每個實體的屬性( attribute)形成每個數(shù)據(jù)表的字段。 實體之間存在著聯(lián)系:一個部門有多個員工,故而部門:員工之間是一個 1: n 的關(guān)系;同理,一個崗位工作上有許多人一起共事,所以工作:員工也是一個 1: n 的關(guān)系;每個擁有各自權(quán)限的員工都可以寫多篇日志、郵件、公告,故而員工和這些實體之間都存在著一對多的關(guān)系。每個實體對應(yīng)多種屬性( attribute)。 (圖 :總經(jīng)理用例圖) 時序圖 登錄時序圖 (圖 :登錄時序圖) 個人管理時序圖 (圖 :個人管理時序圖) 工作管理時序圖 人事部門員工工作管理時序圖: (圖 :工作管理時序圖) 公告查看時序圖 普通用戶查看公告時序圖: (圖 :公告查看時序圖) 工作監(jiān)督時序圖 部門經(jīng)理及總經(jīng)理工作監(jiān)督時序圖: (圖 :工作監(jiān)督時序圖) 公告管理時序圖 人事部用戶公告管理時序圖 (圖 :公告管理時序圖) 日志管理時序圖 (圖 :日志管理時序圖) 薪金管理時序圖 財務(wù)部用戶薪金管理: (圖 :薪金管理時序圖) 郵箱管理時序圖 (圖 :郵箱管理時序圖) 員工管理時序圖 人事部用戶員工管理: (圖 :員工管理時序圖) 數(shù)據(jù)庫設(shè)計 ER 圖 (圖 : ER 圖) 在人力資源管理系統(tǒng)中,對應(yīng)的實體 — 關(guān)系圖如上圖所示。而財務(wù)經(jīng)理的日志模塊除了能添加刪除
點擊復制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1