欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA_Web项目SSM框架开发目录结构

程序员文章站 2024-01-15 22:34:52
...
├──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

这里提供了maven 打包前后的结构
打包前:
JAVA_Web项目SSM框架开发目录结构
打包后:
JAVA_Web项目SSM框架开发目录结构