我正在尝试缩小问题范围,但我无法得到它是什么。我正在为我的tomcat服务器配置一个新的Spring应用程序。但是在服务器启动期间它显示以下错误,
#!/usr/bin/env perl
use strict;
use warnings;
my $file = 'simple.csv';
open my $info, '<', $file or die "Can't open '$file': $!\n";
$|++; #...don't buffer output...
while ( my $line = <$info> ) {
chomp $line; #...remove ending newline...
# printf "%s%s", $line, "\b" x length($line); # alternative-1
printf "%s\r", $line; # alternative-2
sleep 2;
}
close $info;
print "\n"; #...leave a clean output...
请一些帮助
答案 0 :(得分:2)
查看根本原因:
java.lang.NoClassDefFoundError: Lorg/apache/commons/logging/Log;
您错过了项目中的commons-logging.jar
。
如果您使用maven作为依赖关系管理工具,请添加以下依赖项:
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>