You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by "Gary Gregory (JIRA)" <ji...@apache.org> on 2015/06/08 18:15:00 UTC

[jira] [Commented] (LOG4J2-1034) JsonConfiguration.getObjectMapper may more friendly to json

    [ https://issues.apache.org/jira/browse/LOG4J2-1034?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14577409#comment-14577409 ] 

Gary Gregory commented on LOG4J2-1034:
--------------------------------------

Are there any gotchas or drawback to doing this?

> JsonConfiguration.getObjectMapper may more friendly to json
> -----------------------------------------------------------
>
>                 Key: LOG4J2-1034
>                 URL: https://issues.apache.org/jira/browse/LOG4J2-1034
>             Project: Log4j 2
>          Issue Type: Improvement
>          Components: Configurators
>    Affects Versions: 2.3
>            Reporter: takeseem
>            Priority: Minor
>   Original Estimate: 10m
>  Remaining Estimate: 10m
>
> Thanks.
> It's a good idea for JsonConfiguration: 
>  * allow unquoted field names
>  * allow single quotes
> org.apache.logging.log4j.core.config.json.JsonConfiguration.getObjectMapper
> {code}
>     protected ObjectMapper getObjectMapper() {
>         return new ObjectMapper().configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true).configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true).configure(JsonParser.Feature.ALLOW_COMMENTS, true);
>     }
> {code}
> v2.3: 
> {code}
>     protected ObjectMapper getObjectMapper() {
>         return new ObjectMapper().configure(JsonParser.Feature.ALLOW_COMMENTS, true);
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org