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.
我有一个使用 J2EE + Spring 和 MySQL 数据库的 Web 应用程序。我需要一个只读实体。我有一张带有产品的主表,它们仅供阅读。当前不应该插入新记录并且不进行更新。
实体类应该只读取数据并向前传递实体(其他实体是订单、发货等表)。
有什么解决办法吗?有没有人有同样的问题?谢谢您的帮助。
如果您不更改对象,它将永远不会更新。
如果您使用的是 EclipseLink,则可以使用 @ReadOnly 注释将某些内容标记为只读。