本文整理汇总了Java中io.vertx.ext.web.RoutingContext.session方法的典型用法代码示例。如果您正苦于以下问题:Java RoutingContext.session方法的具体用法?Java RoutingContext.session怎么用?Java RoutingContext.session使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类io.vertx.ext.web.RoutingContext
的用法示例。
在下文中一共展示了RoutingContext.session方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: storeSession
import io.vertx.ext.web.RoutingContext; //导入方法依赖的package包/类
private static <T> void storeSession(
final RoutingContext context,
final T data,
final Method method
) {
final Session session = context.session();
if (null != session && null != data && method.isAnnotationPresent(SessionData.class)) {
final Annotation annotation = method.getAnnotation(SessionData.class);
final String key = Instance.invoke(annotation, "value");
final String field = Instance.invoke(annotation, "field");
// Data Storage
Object reference = data;
if (Types.isJObject(data) && StringUtil.notNil(field)) {
final JsonObject target = (JsonObject) data;
reference = target.getValue(field);
}
// Session Put
session.put(key, reference);
}
}
示例2: apply
import io.vertx.ext.web.RoutingContext; //导入方法依赖的package包/类
@Override
public Object apply(final String name,
final Class<?> paramType,
final RoutingContext context) {
final Session session = context.session();
return session.get(name);
}
示例3: getRegistredSessionKey
import io.vertx.ext.web.RoutingContext; //导入方法依赖的package包/类
public static String getRegistredSessionKey(RoutingContext context, String key) {
String sessionKey = null;
if (context.session() != null) {
sessionKey = context.session().get(key);
}
if (sessionKey == null && context.getCookie(key) != null) {
sessionKey = context.getCookie(key).getValue();
}
if (sessionKey != null && sessionKey.equals("null"))
sessionKey = null;
return sessionKey;
}
示例4: ingest
import io.vertx.ext.web.RoutingContext; //导入方法依赖的package包/类
@Override
public Epsilon<T> ingest(final RoutingContext context,
final Epsilon<T> income)
throws WebException {
Object returnValue = null;
final Class<?> paramType = income.getArgType();
if (is(Session.class, paramType)) {
// Session Object
returnValue = context.session();
} else if (is(HttpServerRequest.class, paramType)) {
// Request Object
returnValue = context.request();
} else if (is(HttpServerResponse.class, paramType)) {
// Response Object
returnValue = context.response();
} else if (is(Vertx.class, paramType)) {
// Vertx Object
returnValue = context.vertx();
} else if (is(EventBus.class, paramType)) {
// Eventbus Object
returnValue = context.vertx().eventBus();
} else if (is(User.class, paramType)) {
// User Objbect
returnValue = context.user();
} else if (is(Set.class, paramType)) {
// FileUpload
final Class<?> type = paramType.getComponentType();
if (is(FileUpload.class, type)) {
returnValue = context.fileUploads();
}
} else if (is(JsonArray.class, paramType)) {
// JsonArray
returnValue = context.getBodyAsJsonArray();
} else if (is(JsonObject.class, paramType)) {
// JsonObject
returnValue = context.getBodyAsJson();
} else if (is(Buffer.class, paramType)) {
// Buffer
returnValue = context.getBody();
}
return null == returnValue ? income.setValue(null) : income.setValue((T) returnValue);
}