【发布时间】:2018-04-01 16:01:04
【问题描述】:
我有配置
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/base/**");
}
我想包含所有路径的视图,只是这条路径/base/includepath。
我该怎么做?
【问题讨论】:
-
你的配置是正确的,它包含你的要求!什么问题?
-
我不想忽略路径
/base/includepath。现在这个配置忽略了/base/上的所有路径。 -
我想这就是你要找的东西 - stackoverflow.com/questions/29328120/…
标签: java spring websecurity