直接将以下内容复制到文本文档中另存为XML文件,注意另存为的XML文件的编码要选择UTF-8,然后到Elipse设置选项中,Java >> Code Style >> Code Templates 中,执行Import,然后Apply应用即可。要使代码自动增加注释,请同时勾选下面的Automatically add comments for new method and types,然后Apply应用即可。模板内容如下:
/** * @MethodName: ${enclosing_method} * @Description: 方法说明 * @return the ${bare_field_name} */ /** * @MethodName: ${enclosing_method} * @Description: 方法说明 * @param ${param} the ${bare_field_name} to set */ /** * @Description: 构造函数描述 * ${tags} */ /** * @ClassName: ${type_name} * @Description: 类描述信息 * @author ${user} * @date ${date} ${time} */ /** * @FieldName: ${field} * @Description:字段描述信息 */ /** * @MethodName: ${enclosing_method} * @Description: 方法说明 * ${tags} ${return_type} */ /** * @MethodName: ${enclosing_method} * @Description: 方法说明 * ${tags} * ${see_to_overridden} */ /** * @MethodName: ${enclosing_method} * @Description: 方法说明 * ${tags} * ${see_to_target} */ ${filecomment}${package_declaration}${typecomment}${type_declaration} // ${todo} Auto-generated catch block${exception_var}.printStackTrace(); // ${todo} Auto-generated method stub${body_statement} ${body_statement}// ${todo} Auto-generated constructor stub return ${field}; ${field} = ${param};