美文网首页
Maven项目结构

Maven项目结构

作者: 小鱼313 | 来源:发表于2020-01-04 10:29 被阅读0次

├── pom.xml
└── src
├── main
│ ├── java
│ │ └── mygroup
│ │ ├── controller
│ │ │ ├── StudentController.java
│ │ ├── dao
│ │ │ └── StudentDao.java
│ │ └── model
│ │ └── Student.java
│ ├── resources
│ │ ├── db.properties
│ │ ├── log4j.xml
│ │ └── META-INF
│ │ └── persistence.xml
│ └── webapp
│ ├── index.html
│ ├── META-INF
│ │ ├── context.xml
│ │ └── MANIFEST.MF
│ ├── resources
│ │ └── css
│ │ └── screen.css
│ └── WEB-INF
│ ├── spring
│ │ ├── app
│ │ │ ├── controllers.xml
│ │ │ └── servlet-context.xml
│ │ ├── db.xml
│ │ └── root-context.xml
│ ├── views
│ │ ├── edit.jsp
│ │ ├── home.jsp
│ │ └── list.jsp
│ └── web.xml
└── test
├── java
│ └── mygroup
│ ├── controller
│ │ ├── DataInitializer.java
│ │ └── StudentControllerTest.java
│ └── dao
│ └── StudentDaoTest.java
└── resources
├── db.properties
├── log4j.xml
├── test-context.xml
└── test-db.xml

相关文章

网友评论

      本文标题:Maven项目结构

      本文链接:https://www.haomeiwen.com/subject/cvexactx.html