代码之家  ›  专栏  ›  技术社区  ›  kofhearts

资产文件夹在生产中不可访问?

  •  0
  • kofhearts  · 技术社区  · 6 年前

    enter image description here

    1 回复  |  直到 6 年前
        1
  •  0
  •   Jeff Scott Brown    6 年前

    你可以这样表达:

    grails.plugin.springsecurity.controllerAnnotations.staticRules = [
        // ...
        [pattern: '/somePath/assets/**',      access: ['permitAll']],
        // ...
    ]
    

    https://grails-plugins.github.io/grails-spring-security-core/3.2.x/index.html#pessimistic-lockdown 更多细节。