我可以为带注释的变量启用Eclipse警告吗?

时间:2015-01-01 14:59:02

标签: java eclipse annotations compiler-warnings getter-setter

我有一个Spring实体类,里面有不同的变量。如果没有getter / setter,Eclipse会显示非注释变量的警告。

  

未使用字段Property.warning_yes的值

但是一旦我添加任何注释,它就会停止显示警告,因为我通常忘记生成getter / setter。一旦我编译和部署我的应用程序并获得异常,我才意识到缺少getter / setter是罪魁祸首。这都浪费时间,因此我试图为它找到一些自动解决方案。

Eclipse是否也可以强制为注释变量显示这些警告?

以下是我的示例课程:

@Entity
@Table(name = "example")
public class ExampleClass {

private String warning_yes;     //Here I get the desired warning

@Column(name = "some_name")
private String warning_no;      //Here I do not get the desired warning because of annotation

}

我正在使用Eclipse Luna。

0 个答案:

没有答案