java标记过期方法




1、只需要在方法的上方添加@Deprecated注解即可。

2、建议同时添加过期的描述信息。即:在方法的注释中添加一个@deprecated的参数描述。

如果不加过期的描述信息,那么使用checkstype插件检查代码会报下面的错
Must include both @java.lang.Deprecated annotation and @deprecated Javadoc tag with description.

3、java代码例子:

/** 

     * Description:测试方法过期注解 <br> 

     *  

     * @taskId <br> 

     * @param 请求参数req 

     * @return 响应<br> 

     * @deprecated 该方法未被调用过,已废弃使用 

     */ 

    @Deprecated 

    public String test(String req) { 

        return null; 

    }




1、只需要在方法的上方添加@Deprecated注解即可。