zoukankan      html  css  js  c++  java
  • jdk1.7升级到jdk1.8后出错: [ERROR] javadoc: warning

    from: http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html

    [ERROR] javadoc: warning - Multiple sources of package comments found for package 

    Turning off doclint in JDK 8 Javadoc

     

    JDK 8 includes many updates, but one is I suspect going to cause quite a few complaints - doclint for Javadoc.

    Javadoc doclint

    Documentation is not something most developers like writing. With Java, we were fortunate to have the Javadoc toolset built in and easy to access from day one. As such, writing Javadoc is a standard part of most developers life.

    The Javadoc comments in source code use a mixture of tags, starting with @, and HTML to allow the developer to express their comment and format it nicely.

    Up to JDK 7, the Javadoc tool was pretty lenient. As a developer, you could write anything that vaguely resembled HTML and the tool would rarely complain beyond warnings. Thus you could have @link references that were inaccurate (such as due to refactoring) and the tool would simply provide a warning.

    With JDK 8, a new part has been added to Javadoc called doclint and it changes that friendly behaviour. In particular, the tool aim to get conforming W3C HTML 4.01 HTML (despite the fact that humans are very bad at matching conformance wrt HTML).

    With JDK 8, you are unable to get Javadoc unless your tool meets the standards of doclint. Some of its rules are:

    • no self-closed HTML tags, such as <br /> or <a id="x" />
    • no unclosed HTML tags, such as <ul> without matching </ul>
    • no invalid HTML end tags, such as </br>
    • no invalid HTML attributes, based on doclint's interpretation of W3C HTML 4.01
    • no duplicate HTML id attribute
    • no empty HTML href attribute
    • no incorrectly nested headers, such as class documentation must have <h3>, not <h4>
    • no invalid HTML tags, such as List<String> (where you forgot to escape using &lt;)
    • no broken @link references
    • no broken @param references, they must match the actual parameter name
    • no broken @throws references, the first word must be a class name

    Note that these are errors, not warnings. Break the rules and you get no Javadoc output.

    In my opinion, this is way too strict to be the default. I have no problem with such a tool existing in Javadoc, but given the history of Javadoc, errors like this should be opt-in, not opt-out. Its far better to get slightly broken Javadoc than no Javadoc.

    I also haven't been able to find a list of the rules, which makes life hard. At least we can see the source code to reverse engineer them.

    Turning off doclint

    The magic incantation you need is -Xdoclint:none. This goes on the command line invoking Javadoc.

    If you are running from maven, you need to use the additionalparam setting, as per the manual. Either add it as a global property:

      <properties>
        <additionalparam>-Xdoclint:none</additionalparam>
      </properties>
    

    or add it to the maven-javadoc-plugin:

      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <configuration>
            <additionalparam>-Xdoclint:none</additionalparam>
          </configuration>
        </plugin>
      </plugins>
    

    Ant also uses additionalparam to pass in -Xdoclint:none, see the manual.

    Gradle does not expose additionalparam but Tim Yates and Cedric Champeau advise of this solution:

      if (JavaVersion.current().isJava8Compatible()) {
        allprojects {
          tasks.withType(Javadoc) {
            options.addStringOption('Xdoclint:none', '-quiet')
          }
        }
      }
    

    See also the Gradle manual.

    Summary

    I don't mind doclint existing, but there is no way that it should be turned on to error mode by default. Getting some Javadoc produced without hassle is far more important than pandering to the doclint style checks. In addition, it is very heavy handed with what it defines to be errors, rejecting plenty of HTML that works perfectly fine in a browser.

    I've asked the maven team to disable doclint by default, and I'd suggest the same to Ant and Gradle. Unfortunately, the Oracle team seem convinced that they've made the right choice with errors by default and their use of strict HTML.

    Comments welcome, but please note that non-specific "it didn't work for me" comments should be at Stack Overflow or Java Ranch, not here!

  • 相关阅读:
    ruby on rails入门基础
    医学界的一个阴谋——近视手术
    30岁前挣够500万
    学习数学的意义
    针对 NetBeans IDE 7.1 的 Ruby 开发插件发布
    人的一生
    Rails常用命令整理
    穷人为什么穷?富人为什么富?
    NetBeans的(默认)快捷键
    IT界那些性感的让人尖叫的程序员
  • 原文地址:https://www.cnblogs.com/timssd/p/5740907.html
Copyright © 2011-2022 走看看