Anatomy of a Play application 解析play目录结构

来源:互联网 发布:h5排行榜页面源码 编辑:程序博客网 时间:2024/05/21 07:53
app                       Application sources  assets                 Compiled asset sources     stylesheets         Typically LESS CSS sources     javascripts         Typically CoffeeScript sources  controllers            Application controllers  models                 Application business layer  views                  Templatesbuild.sbt                 Application build scriptconf                      Configurations files and other non-compiled resources (on classpath)  application.conf       Main configuration file  routes                 Routes definitionpublic                    Public assets  stylesheets            CSS files  javascripts            Javascript files  images                 Image filesproject                   sbt configuration files  build.properties       Marker for sbt project  plugins.sbt            sbt plugins including the declaration for Play itselflib                       Unmanaged libraries dependencieslogs                      Standard logs folder  application.log        Default log filetarget                    Generated stuff  scala-2.10.0                 cache                   classes             Compiled class files     classes_managed     Managed class files (templates, ...)     resource_managed    Managed resources (less, ...)     src_managed         Generated sources (templates, ...)test                      source folder for unit or functional tests
0 0
原创粉丝点击