eclipse开发中的目录结构

 原文:https://www.cnblogs.com/benwu/articles/5162614.html
 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
src
├─ main
  ├─filters
  │
  ├─java
  │  └─com
  │      └─micmiu
  │          ├─demoweb
  │          │  │ ....
  │          │  │
  │          │  └─utils
  │          │
  │          └─modules
  │
  ├─resources
  │  │  application.properties
  │  │  applicationContext-shiro.xml
  │  │  applicationContext.xml
  │  │  hibernate.cfg.xml
  │  │  log4j.properties
  │  │  spring-mvc.xml
  │  │  spring-view.xml
  │
  └─webapp
      │
      └─WEB-INF
└─ test
    ├─java
    │  └─com
    │      └─micmiu
    │          ├─demoweb
    │          │      TestOther.java
    │
    └─resources
            application.properties

猜你喜欢

转载自blog.csdn.net/guaidaojx/article/details/79622594