深入理解Spring Cloud与微服务构建(第2版)
上QQ阅读APP看书,第一时间看更新

4.2.1 项目结构

创建完工程后,工程的目录结构如下:

- src
     -main
          -java
               -package
                    -SpringbootApplication
          -resouces
               - statics
               - templates
               - application.yml
     -test
- pom

各目录的含义如下。

•pom文件为依赖管理文件。

•resouces为资源文件夹。

•statics为静态资源。

•templates为模板资源。

•application.yml为配置文件。

•SpringbootApplication为程序的启动类。