spiderman25

javaweb项目结构

2019-03-02 00:28  Spiderman25  阅读(173)  评论(0编辑  收藏  举报

普通非maven项目
src
resources
WebRoot->
    其他静态文件
    WEB-INF
        jsp
        lib
        web.xml

普通maven项目
src
    main
        java
        resources
        webapp
            其他静态文件
            WEB-INF
                jsp
                web.xml
pom.xml

普通非maven项目、普通maven项目打成包后的结构均为
project
    其他静态文件
    WEB-INF
        jsp
        lib
        web.xml
        classes
            com.xxx
            resources里的文件

springboot项目
src
    main
        java
        resources
            mapper
            static
            templates
            application.yml
pom.xml

springboot项目打成包后的结构
jar
    BOOT-INF
        classes
            com.xxx
            mapper
            static
            templates
            application.yml
        lib
    META-INF
    org.xxx

分类:

技术点:

相关文章:

  • 2021-09-08
  • 2021-08-09
  • 2021-07-21
  • 2022-12-23
  • 2022-02-07
  • 2021-06-20
  • 2021-06-06
  • 2022-12-23
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2022-12-23
  • 2021-12-11
  • 2021-12-27
  • 2021-08-07
相关资源
相似解决方案