在 config中
@Override
public void configRoute(Routes routes) {
this.routes = routes;
routes.add("/", IndexController.class);
routes.add(new FrontRoutes());
routes.add(new AdminRoutes());
}
the.routes 中 只能获取到 indexcontroller.class
不能获取 new FrontRoutes() 和 new AdminRoutes() 的 route
shiro start 中 routes.getRouteItemList() 获取的 routes
只有 indexcontroller 一个
导致 shiro 不能完美集成