zoukankan      html  css  js  c++  java
  • springmvc项目目录总结

    src
     main
        java
         com.x.x
          sys
           action(在controller中调用,下一层是service)
           controller
           filter
           interceptor(拦截器)
           log
           mapper(包含xml文件)
           model(javabean)
           service(其中有接口与impl文件夹,调用的Dao在jar包中)
           shiro.security
           util
          timer(定时任务相关)
          webservice

        resources
         cache(ehcache.xml)
         context(context-shiro.xml)
         mybatis(mybatis-config.xml)
         properties
         web(springmvc-servlet.xml)

        webapp
         static
          css
          images
          js
         WEB-INF
          tlds(描述c:if等标签用)
          view(包含index.jsp,使用static下的css、js、images)
          web.xml(指向resources中的web/springmbc-servlet.xml等)

     test(路径测试用java文件)
     

  • 相关阅读:
    Codeforces Round #564 (Div. 1)
    Codeforces Round #569 (Div. 1)
    SDOI2019R2游记
    BZOJ 3555: [Ctsc2014]企鹅QQ
    SDOI2019R1游记
    计数的一些东西
    多项式的各种操作
    BZOJ 5424: 烧桥计划
    Codeforces Round #545 (Div. 1)
    概率期望学习笔记
  • 原文地址:https://www.cnblogs.com/codeToSuccess/p/13906239.html
Copyright © 2011-2022 走看看