21

我正在使用 Tomcat7 Maven 插件:

<plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.0-beta-1</version>
            <configuration>
                    <update>true</update>
                    <contextFile>${basedir}/conf/context.xml</contextFile>
                    <tomcatUsers>${basedir}/conf/tomcat-users.xml</tomcatUsers>
            </configuration>
 </plugin> 

我按如下方式运行我的应用程序(运行嵌入的 tomcat)

mvn tomcat7:运行

问题:没有 catalina.out 日志文件?

我想打开领域的日志记录,以便我可以调试一些东西。在 ./target/tomcat/log 目录中只有 access_log.* 没有其他日志文件。

我试过弄乱 ./target/tomcat/conf/logging.properties 文件无济于事。

如何为此 Tomcat 配置日志记录?

4

5 回答 5

9

我找到了解决方案,您需要描述日志库的额外依赖项。就我而言,它的logback,如果您使用 log4j 只需更改依赖项。它有效......在我的配置下:

       <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <path>/myapp</path>
                <extraDependencies>
                    <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-api</artifactId>
                        <version>1.7.2</version>
                    </dependency>
                    <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>jul-to-slf4j</artifactId>
                        <version>1.7.2</version>
                    </dependency>
                    <dependency>
                        <groupId>ch.qos.logback</groupId>
                        <artifactId>logback-classic</artifactId>
                        <version>1.0.7</version>
                    </dependency>
                    <dependency>
                        <groupId>ch.qos.logback</groupId>
                        <artifactId>logback-core</artifactId>
                        <version>1.0.7</version>
                    </dependency>
                </extraDependencies>
            </configuration>
        </plugin>
于 2013-12-09T16:59:43.803 回答
0

我的解决方案是,

            String logBackfile  ="....."; //the logback config
            LoggerContext lc = new LoggerContext();

            JoranConfigurator configurator = new JoranConfigurator();  
            configurator.setContext(lc);  
            lc.reset();  
            configurator.doConfigure(logBackfile);
            StatusPrinter.printInCaseOfErrorsOrWarnings(lc);  
于 2015-01-05T09:24:37.187 回答
0

嵌入式 Tomcat Maven 的日志记录配置目前因错误而损坏

https://issues.apache.org/jira/browse/MTOMCAT-127

解决方法是简单地重定向标准输出,例如:

mvn tomcat7:run 2>&1 | tee catalina.out
于 2014-12-31T16:41:27.840 回答
0

这只是部分答案,但我让它像这样工作,我的应用程序包含自己的 logback 依赖项(无需声明 extraDependencies)。

这里唯一需要注意的是,当我的应用程序中存在较低级别的错误时(在应用程序加载和/或其他之前),我仍然无法获得所需的 Tomcat catalina.log 输出。使用这种配置,我只得到我的应用程序级别的日志文件(不是我真正想要的 logs/catalina.out):

<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <version>2.2</version><!-- Tomcat 7.0.47 -->
    <configuration>
        <port>9090</port>
        <path>/${project.artifactId}</path>
        <systemProperties>
            <spring.profiles.active>webService</spring.profiles.active>
            <java.util.logging.config.file>src/integration-test/resources/logback.xml</java.util.logging.config.file>
        </systemProperties>
    </configuration>
    <executions>
        <execution>
            <id>tomcat-run</id>
            <goals>
                <goal>run-war-only</goal>
            </goals>
            <phase>pre-integration-test</phase>
            <configuration>
                <fork>true</fork>
            </configuration>
        </execution>
        <execution>
            <id>tomcat-shutdown</id>
            <goals>
                <goal>shutdown</goal>
            </goals>
            <phase>post-integration-test</phase>
        </execution>
    </executions>
</plugin>
于 2015-12-31T20:20:04.887 回答
-1

尝试使用

    <tomcatLoggingFile>log.txt</tomcatLoggingFile>

在配置部分。

于 2013-10-21T19:04:58.743 回答