JAVA_Web項目SSM框架開發目錄結構
發表時(shí)間:2018-7-21
發布人(rén):融晨科技
浏覽次數:68
本目錄結構系本人(rén)自建SSM框架完成後的(de)一個(gè)小型目錄結構,僅供參考
├──pom.xml
├──main
| ├──java
| | └──com
| | └──web
| | ├── core
| | | ├── controller //控制器包
| | | ├── entity //POJO包
| | | ├── mapper //Mapper接口包
| | | ├── service //Service接口包
| | | └── serviceImpl //service實現類包
| | └──util //工具包
| ├── resources //資源文件夾(配置文件)
| | ├──applicationContext.xml //Spring配置文件
| | ├──dbconfig.properties //數據庫配置文件
| | ├──log4j.properties //log4j配置文件
| | ├──mybatis-config.xml //mybatis配置文件
| | ├──spring-mvc.xml //springMvc配置文件
| | ├──spring-mybatis.xml //spring-mybatis整合配置
| | └── mapping //mapper.xml文件夾
| | └── StudentMapper.xml
| └── webapp ///web應用部署根目錄
| ├──login.html //登錄頁
| ├──pages //jsp文件将愛
| | └── studentList.jsp
| ├──static //靜态資源文件夾
| | ├──css
| | | └── login.css
| | ├──images
| | | ├──login-img.png
| | | └── login_logo.png
| | └── js
| | └── JQuery.js
| └── WEB-INF //
| └── web.xml
└──test
├── java
├── resources