gpt4 book ai didi

java - Maven 检查样式错误 : Expected @param tag for ''

转载 作者:搜寻专家 更新时间:2023-10-30 19:57:12 24 4
gpt4 key购买 nike

我有以下通用类型的方法,但是当我运行 maven checkstyle(maven-checkstyle-plugin, 2.121) 它一直给我Expected @param tag for '<T>' maven 构建期间的错误消息。我该如何克服这个问题?

/**
* Read in specified type of object from request body.
* @param request The HttpServletRequest
* @param expected The expected type T
* @return <T> specified type of object
*/
public <T extends Object> T getExpectedValue(
final HttpServletRequest request, final Class<T> expected)

我使用以下方法关闭通用参数标记,但它没有用,我也有上面提到的 java 文档。

<module name="JavadocType">
<property name="allowMissingParamTags" value="true"/>
</module>

最佳答案

它告诉你你没有为方法类型参数编写 javadoc:

/**
* ...
* @param <T> This is the type parameter
* @param ....
*/
public <T extends Object> T getExpectedValue(
final HttpServletRequest request, final Class<T> expected)

生成的 javadoc 将在标题中包含如下部分:

Type Parameters: 
T - This is the type parameter

关于java - Maven 检查样式错误 : Expected @param tag for '<T>' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30227708/

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