我正在使用apache commons logging。
public static int Find<T>(Func<T, bool> input)
用于打印日期的记录器如下
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.1.0.RELEASE</version>
</dependency>
但是现在它打印得像这样
20-Aug-2015 13:15:39.740 INFO [http-nio-8080-exec-3] com.myapp.myclass Method 'mymethod' executed. Processing time: 2 ms
日志中的警告:
91522432 [http-nio-8080-exec-3] INFO com.myapp.myclass Method 'mymethod' executed. Processing time: 2 ms <br/>
存在冲突,因为spring-data-jpa导入了另一个版本。 我如何在pom中排除它?