当前位置: 首页>>代码示例>>Java>>正文


Java JsonLocation.getColumnNr方法代码示例

本文整理汇总了Java中com.fasterxml.jackson.core.JsonLocation.getColumnNr方法的典型用法代码示例。如果您正苦于以下问题:Java JsonLocation.getColumnNr方法的具体用法?Java JsonLocation.getColumnNr怎么用?Java JsonLocation.getColumnNr使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.fasterxml.jackson.core.JsonLocation的用法示例。


在下文中一共展示了JsonLocation.getColumnNr方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getTokenLocation

import com.fasterxml.jackson.core.JsonLocation; //导入方法依赖的package包/类
@Override
public XContentLocation getTokenLocation() {
    JsonLocation loc = parser.getTokenLocation();
    if (loc == null) {
        return null;
    }
    return new XContentLocation(loc.getLineNr(), loc.getColumnNr());
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:9,代码来源:JsonXContentParser.java

示例2: initializeJsonLocation

import com.fasterxml.jackson.core.JsonLocation; //导入方法依赖的package包/类
private void initializeJsonLocation(@Nullable JsonLocation jsonLoc) {
    if (jsonLoc == null) {
        return;
    }

    this.charOffset = ((int) jsonLoc.getCharOffset());
    this.colNum = jsonLoc.getColumnNr();
    this.lineNum = jsonLoc.getLineNr();
}
 
开发者ID:esacinc,项目名称:sdcct,代码行数:10,代码来源:SdcctLocation.java

示例3: createLocation

import com.fasterxml.jackson.core.JsonLocation; //导入方法依赖的package包/类
private Location createLocation(JsonLocation json) {
    return new Location(json.getLineNr() - 1, json.getColumnNr() - 1);
}
 
开发者ID:RepreZen,项目名称:KaiZen-OpenAPI-Editor,代码行数:4,代码来源:NodeDeserializer.java

示例4: toResponse

import com.fasterxml.jackson.core.JsonLocation; //导入方法依赖的package包/类
/**
 * {@inheritDoc}
 */
@Override
public Response toResponse(JsonProcessingException exception) {
    Throwable throwable = exception;
    while (throwable != null) {
        if (throwable instanceof PersistenceException) {
            return exceptionMappers.get().findMapping(throwable).toResponse(throwable);
        }
        throwable = throwable.getCause();
    }

    logger.debug("Json Processing error", exception);
    String message = exception.getOriginalMessage();
    String desc = null;
    String source = null;
    if (mode.isDev()) {
        desc = IOUtils.getStackTrace(exception);
        JsonLocation location = exception.getLocation();
        if (location != null) {
            source = "line: " + location.getLineNr() +
                    ", column: " + location.getColumnNr();
        } else {
            source = exception.getStackTrace()[0].toString();
        }
    }

    ErrorMessage errorMessage = ErrorMessage.fromStatus(Response.Status.BAD_REQUEST.getStatusCode());
    errorMessage.setThrowable(exception);
    errorMessage.setCode(Hashing.murmur3_32().hashUnencodedChars(exception.getClass().getName()).toString());

    errorMessage.addError(new Result.Error(
            errorMessage.getCode(),
            message != null ? message : exception.getMessage(),
            desc,
            source
    ));

    return Response.status(errorMessage.getStatus())
            .entity(errorMessage)
            .type(ExceptionMapperUtils.getResponseType())
            .build();
}
 
开发者ID:icode,项目名称:ameba,代码行数:45,代码来源:JsonProcessingExceptionMapper.java


注:本文中的com.fasterxml.jackson.core.JsonLocation.getColumnNr方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。