JavaBean

A JavaBean is just a standard:

  1. All properties private (use getters/setters)
  2. A public no-argument constructor
  3. Implements Serializable.

参考:

  • http://stackoverflow.com/questions/3295496/what-is-a-javabean-exactly
  • http://www.jianshu.com/p/39fb8ff24dbf

你可能感兴趣的:(JavaBean)