use of com.nb6868.onex.common.auth.AuthProps in project onex-boot by zhangchaoxu.
the class BaseShiroConfig method initFilters.
/**
* 初始化filters
*/
protected Map<String, Filter> initFilters(AuthProps authProps) {
Map<String, Filter> filters = new HashMap<>();
filters.put("shiro", new SimpleShiroFilter(authProps));
return filters;
}
Aggregations