在同一个Maven项目中使用com.fasterxml.jackson和org.codehaus.janino

时间:2019-12-10 13:38:38

标签: java maven jackson fasterxml

是否可以在同一个项目上使用com.fasterxml.jackson和org.codehaus.janino,我想永久使用com.fasterxml.jackson,但是我的项目需要Spring 1.5.10。尽管在fastxml中排除了杰克逊注释,但错误仍然存​​在

我的Maven POM文件看起来已经像这样

<dependency>
    <groupId>org.codehaus.janino</groupId>
    <artifactId>commons-compiler</artifactId>
    <version>2.7.8</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.10.1</version>
    <exclusions>
        <exclusion>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
        </exclusion>
        <exclusion>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </exclusion>
    </exclusions>
</dependency>

但是,在启动应用程序时,我遇到了一个弹簧错误Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.web.filter.OrderedHttpPutFormContentFilter]: Factory method 'httpPutFormContentFilter' threw exception; nested exception is java.lang.NoClassDefFoundError: Could not initialize class com.fasterxml.jackson.databind.ObjectMapper,可以通过删除fastxml包轻松解决。

0 个答案:

没有答案