Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 bean 正确使用了 setter 并将属性设置为所需的值,但随后它进入了一个使用该属性的方法并自动设置为 0。我什至不知道 0 来自哪里。在调试中,它直接从设置器跳转到方法,所以我看不到中间发生的任何事情。
@SessionScoped如果与它有任何关系,bean 将使用注释。
@SessionScoped
私有 int vendorno
int像, boolean,等Java 原语long有一个固定的默认值。
int
boolean
long
使用包装器对象,例如Integer, Boolean, Long. 他们可以null。
Integer
Boolean
Long
null
private Integer vendorno;