本文整理汇总了Java中io.vertx.rxjava.ext.auth.shiro.ShiroAuth类的典型用法代码示例。如果您正苦于以下问题:Java ShiroAuth类的具体用法?Java ShiroAuth怎么用?Java ShiroAuth使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ShiroAuth类属于io.vertx.rxjava.ext.auth.shiro包,在下文中一共展示了ShiroAuth类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setupAuthenticationRoutes
import io.vertx.rxjava.ext.auth.shiro.ShiroAuth; //导入依赖的package包/类
@Override
protected AuthProvider setupAuthenticationRoutes() {
AppGlobals globals = AppGlobals.get();
AuthProvider auth = ShiroAuth.create(globals.getVertx(), new ShiroAuthOptions()
.setType(ShiroAuthRealmType.PROPERTIES)
.setConfig(new JsonObject()
.put("properties_path", globals.getConfig().getString("security_definitions"))));
globals.getRouter().route().handler(UserSessionHandler.create(auth));
JsonObject keyStoreOptions = new JsonObject().put("keyStore", globals.getConfig().getJsonObject("keystore"));
// attempt to load a Key file
JWTAuth jwtAuth = JWTAuth.create(globals.getVertx(), new JWTAuthOptions(keyStoreOptions));
JWTAuthHandler jwtAuthHandler = JWTAuthHandler.create(jwtAuth);
globals.setGlobal(JWTAuth.class, jwtAuth);
globals.getRouter().route().handler(context -> {
// only filter if we have a header, otherwise it will try to force auth, regardless if whether
// we want auth
if(context.request().getHeader(HttpHeaders.AUTHORIZATION) != null)
jwtAuthHandler.handle(context);
else
context.next();
});
return auth;
}