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文件)
     

  • 相关阅读:
    Linux 磁盘管理
    Linux 特殊权限及if语句
    Linux find命令
    MySQL索引知识介绍
    MySQL库表设计小技巧
    教你用SQL实现统计排名
    Truncate用法详解
    utf8字符集下的比较规则
    关于Aborted connection告警日志的分析
    MySQL DDL详情揭露
  • 原文地址:https://www.cnblogs.com/codeToSuccess/p/13906239.html
Copyright © 2011-2022 走看看