POJO在tapestry中的定义是什么

What is POJO defined as in tapestry

我是 Tapestry 的新手,根据我的理解,POJO 不会扩展、实现或使用注释 here

然而,当我访问挂毯时webpage

我不禁注意到他们这么说

Simple POJO classes, streamlined templates, live class reloading, state-of-the-art exception reporting, first-class Ajax support, and a big library of built-in components: Tapestry is designed from the ground up to give you great productivity.

但是当我完成本教程时,java 类 实际上确实使用了像 @Validate("required")
这样的注释 public 字符串名字;
那么他们声称他们使用简单的 POJO 类 是想说明什么?请保持简单,以便我能理解 ;_;

Tapestry 应用中的页面和组件class不需要扩展框架class、实现框架接口或使用框架注释。从这个意义上说,它们是 POJO。但是,您可以自由地自己执行任何这些操作,并且 Tapestry 确实提供了注释,这些注释是添加某些常用功能的便捷方式,例如示例中的验证。