Spring 3 - 停止序列化自动装配的 bean

发布于 2024-10-21 18:17:28 字数 249 浏览 1 评论 0原文

我有一个会话对象,其中包含对我不希望序列化的另一个对象的引用。 是否可以使用注释来做到这一点?

@Component
 public class Model implements Serializable{
private static final long serialVersionUID = 1L;

    @Autowired
    private Validator validator;

提前致谢,

I have a session object which contains a reference to another object that I do not wish to serialize.
Is it possible to do so using annotations?

@Component
 public class Model implements Serializable{
private static final long serialVersionUID = 1L;

    @Autowired
    private Validator validator;

Thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多像笑话 2024-10-28 18:17:28

您可以用 transient 标记它,尽管反序列化后它会是 null

You can mark it with transient, though it would be null after deserialization.

临风闻羌笛 2024-10-28 18:17:28

您还可以将验证从 POJO 移至辅助类中。您可以使用 JSR-303 中描述的 javax.validation 中的验证注释。这是一个操作方法链接:
http: //www.openscope.net/2010/02/08/spring-mvc-3-0-and-jsr-303-aka-javax-validation/

You can also move the validation out of the POJO into a helper class. You could use the validation annotations from javax.validation describe in JSR-303. Here is a howto link:
http://www.openscope.net/2010/02/08/spring-mvc-3-0-and-jsr-303-aka-javax-validation/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文