apache shiro url matching with apache tapestry
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
So here is my configuration configuration.add(factory.createChain("/abc/*") .add(factory.anon()).build()); configuration.add(factory.createChain("/pdf/pdfReport/*") .add(factory.authc()).build()); configuration.add(factory.createChain("/*").add(factory.authc()) .build()); The problem i am facing is /abc is in root path and if i make it anonymous then shiro still redirects it to login page. I guess /* is overwriting the /abc request and send every root reqyest for authentication because if i comment this code configuration.add(factory.createChai