SSH框架分模組開發

2021-08-07 10:53:18 字數 2627 閱讀 3726

------------------siwuxie095

ssh 框架分模組開發

1、在spring 核心配置檔案中配置多個內容,容易造成

配置混亂,不利於維護

「分模組開發主要針對

spring 核心配置檔案」

2、把spring 核心配置檔案中的

一部分配置放到單獨的

配置檔案中,再在

spring 核心配置檔案中

引入單獨的配

置檔案即可

3、一般情況下,建議把

action 物件的配置放到單獨的

配置檔案中

「因為其它的配置基本不變,只有

action 物件的配置在

不斷重複」

如: user.xml:

<?xmlversion ="1.0"encoding="utf-8"?>

xmlns=""

xmlns:xsi=""

xmlns:aop=""

xmlns:context=""

xmlns:tx=""

xsi:schemalocation="

/spring-beans.xsd

/spring-aop.xsd

/spring-context.xsd

/spring-tx.xsd">

id="useraction"class="com.siwuxie095.action.useraction" scope

="prototype"

>

name="userservice"ref="userservice">

id="userservice"class="com.siwuxie095.service.userservice">

name="userdao"ref="userdaoimpl">

id="userdaoimpl"class="com.siwuxie095.dao.impl.userdaoimpl">

name="hibernatetemplate"ref="hibernatetemplate">

id="hibernatetemplate"class="org.springframework.orm.hibernate5.hibernatetemplate">

name="sessionfactory"ref="sessionfactory">

在<?xmlversion ="1.0"encoding="utf-8"?>

引入部分如下:

maven分模組開發

背景 開發了乙個專案給各個學校使用,原先是基線然後分支。現在打算弄分模組開發 如何分模組?參考上面既可以開始分模組開發。原理 按照mvc思想,每個模組分為控制層,service層,dao層 在此基礎上把每個層級作為jar包依賴注入到對應的層級中。service的web.xml新增依賴dao層,以此類...

Vuex分模組開發

首先在src目錄下新建資料夾store 在store資料夾下 新建乙個model資料夾用來管理vuex模組檔案,新建乙個index.js用來合併模組,一起匯出 結構如下 開啟lable.js,編寫模組 格式如下 const state const getters const mutations co...

Spring分模組開發

userdao class com.zhiyou100.dao.impl.userdaoimpl bean userservice class com.zhiyou100.service.impl.userserviceimpl bean usercontroller class com.zhiyo...