maven模組化搭建SSM框架
阿新 • • 發佈:2018-12-16
本文是使用idea進行環境搭建的. 1.idea新建一個空白專案(作為專案的資料夾),然後next,->取名字->確定,本文中取名為pro_ssm. 2.在彈窗中選擇project,選擇jdk版本,然後OK. 3.選擇file->new->module. 4.選擇maven專案,然後直接next. 5.這是我們的父專案,取名為SSM-Parent,取名,next->finish.父專案的pom檔案packaging為pom 6.同樣file->new ->module,建立SSM-Common(工具類),SSM-Core(配置類),SSM-DAO(資料訪問層),SSM-Service(service層),SSM-Web(controller層),這些module都要依賴父模組.
<dependencies> <dependency> <groupId>cn.app.ssm</groupId> <artifactId>SSM-Service</artifactId> </dependency> </dependencies>
其他pom檔案和上圖一樣新增模組間的相互依賴和jar包依賴, 8.在SSM-Core的resource檔案中配置spring相關檔案,以及資料來源,事務,spring-mvc配置.和普通的ssm框架一樣 然後新增web.xml配置,xml配置中的紅色警告有些可以忽略. 最終測試結果: