gpt4 book ai didi

java - ANT 输出、java 日志记录和 SPRING 教程的问题

转载 作者:行者123 更新时间:2023-11-30 09:52:05 25 4
gpt4 key购买 nike

我目前正在按照本教程学习 SPRING:http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html

一切正常,但 Ant 输出始终显示“标准错误”以及我认为是错误的正常日志记录内容。

$ ant tests
Buildfile: build.xml

build:

buildtests:

[javac] Compiling 1 source file to /Users/Shared/Projects/springapp/war/WEB-INF/classes

tests:

[junit] Running springapp.web.HelloWorldControllerTests
[junit] Oct 30, 2007 11:31:43 PM springapp.web.HelloController handleRequest
[junit] INFO: Returning hello view
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
[junit] Testsuite: springapp.web.HelloWorldControllerTests
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
[junit] ------------- Standard Error -----------------
[junit] Oct 30, 2007 11:31:43 PM springapp.web.HelloController handleRequest
[junit] INFO: Returning hello view
[junit] ------------- ---------------- ---------------

BUILD SUCCESSFUL
Total time: 2 seconds

我怎样才能改变这种行为?日志输出不是错误,还是针对 Ant?感谢您的任何想法和澄清!

最佳答案

查看链接教程,“junit”任务如下所示。

将其更改为 showoutput="false"隐藏测试输出。我想教程将其打开,以便您可以看到发生了什么,但通常它隐含地为“false”——如果您省略“showoutput”属性,则为默认值。

<junit printsummary="on"
fork="false"
haltonfailure="false"
failureproperty="tests.failed"
showoutput="true">
<classpath refid="master-classpath"/>
<formatter type="brief" usefile="false"/>

<batchtest>
<fileset dir="${build.dir}">
<include name="**/*Tests.*"/>
</fileset>
</batchtest>

</junit>

关于java - ANT 输出、java 日志记录和 SPRING 教程的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4376248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com