zoukankan      html  css  js  c++  java
  • Spring里的Ant Pattern

    Spring里的Ant Pattern用于匹配URL

    可以参考官网:https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/util/AntPathMatcher.html

    规则很简单

    ? 匹配单个字符
    * 匹配0个或者多个字符
    ** 匹配0个或多个路径(也就是用/分割的多级路径) 
    {spring:[a-z]+} 按照正则匹配[a-z]+,并且将其作为路径变量,变量名为"spring"

    举例

    com/t?st.jsp — matches com/test.jsp but also com/tast.jsp or com/txst.jsp
    com/*.jsp — matches all .jsp files in the com directory
    com/**/test.jsp — matches all test.jsp files underneath the com path
    org/springframework/**/*.jsp — matches all .jsp files underneath the org/springframework path
    org/**/servlet/bla.jsp — matches org/springframework/servlet/bla.jsp but also org/springframework/testing/servlet/bla.jsp and org/servlet/bla.jsp
    com/{filename:\w+}.jsp will match com/test.jsp and assign the value test to the filename variable
    ---栖息之鹰(一个外表懒洋洋的内心有激情的程序员) 此博客为笔者原著,转载时请注明出处,谢谢!
  • 相关阅读:
    Git 简要教程
    SDK更新失败问题解决
    常用安卓操作
    MongoDB本地安装与启用(windows 7/10)
    windows 快捷键收集
    windows 常用命令
    Lambda Expression Introduction
    对 load_breast_cancer 进行 SVM 分类
    Support Vector Machine
    使用 ID3 对 Titanic 进行决策树分类
  • 原文地址:https://www.cnblogs.com/roostinghawk/p/7918531.html
Copyright © 2011-2022 走看看