Detected both log4j-over-slf4j.jar AND slf4j-log4j12.jar on the class path, preempting StackOverflowError.

后端 未结 7 2049
南方客
南方客 2020-12-04 23:31

I have used xuggle library in my project to trans code the video from mp4 to flv. I have used slf4j libraries also to support logging

7条回答
  •  清歌不尽
    2020-12-05 00:00

    So you have to exclude conflict dependencies. Try this:

    
       
        org.slf4j
        slf4j-log4j12
      
       
        log4j
        log4j
      
     
    

    This solved same problem with slf4j and Dozer.

提交回复
热议问题