Menu

#19 Remove bean-commons and jcl-over-slf4j

1.1.0
open
None
2016-02-29
2016-02-29
No

Remove bean-commons and as a result jcl-over-slf4j

<dependency>
<groupid>commons-beanutils</groupid>
<artifactid>commons-beanutils</artifactid>
<version>1.9.2</version>
<exclusions>
<exclusion>
<artifactid>commons-logging</artifactid>
<groupid>commons-logging</groupid>
</exclusion>
</exclusions>
</dependency>
is used for configuration population (this can be replaced with JAXB or even sax parser)
--cut begin--
LogFormatConfiguration
@XmlElement
public void setMessageBuilderFactoryConfiguration(MessageBuilderFactoryConfiguration messageBuilderFactoryConfiguration) throws InstantiationException, IllegalAccessException, InvocationTargetException, DOMException {
messageBuilderFactory = messageBuilderFactoryConfiguration.getClazz().newInstance();
for (Element element : messageBuilderFactoryConfiguration.getProperties()) {
BeanUtils.setProperty(messageBuilderFactory, element.getTagName(), element.getTextContent());
}
}
}
--cut end--

AND

this harder to implement but possible
LogFormatter toString(Object bean, String property){
}

removing

Discussion

  • Vitaliy Semochkin

    • summary: Remove bean-commons --> Remove bean-commons and jcl-over-slf4j
    • Description has changed:

    Diff:

    --- old
    +++ new
    @@ -29,3 +29,4 @@
     }
    
    
    +removing 
    
    • assigned_to: Vitaliy Semochkin
    • Milestone: 1.0.0 --> 1.1.0
     
  • Vitaliy Semochkin

    • Description has changed:

    Diff:

    --- old
    +++ new
    @@ -1,3 +1,6 @@
    +Remove bean-commons and as a result jcl-over-slf4j
    +
    +
     <dependency>
                <groupId>commons-beanutils</groupId>
                <artifactId>commons-beanutils</artifactId>
    
     

Log in to post a comment.

MongoDB Logo MongoDB