我很想知道是否有更好的方法来准备查询字符串而不检查 Java Bean 中的空值。
我有以下带有属性的java bean
public class Employee{
private String name;
private String address;
//setters and getters i am not mention here
}
假设以名称为值,地址没有值意味着 null。我想准备如下查询字符串:
update table test where name='value from property' where xxx=?
问候,
查克里