java注解的错误使用

发布于 2024-12-01 06:07:23 字数 183 浏览 1 评论 0原文

我知道java注释是一个强大的工具。对我来说,project lombok 是极端使用的一个很好的例子。但我听说有时最好不要使用注释。

您能否给我一些错误注释的示例,以便我知道要避免什么?

I know java annotation is a powerfull tool. For me, project lombok is a great example of extreme use. But i've heard that sometimes, it is better not to use annotations.

Can you give me examples of bad annotations, so i have an idea of what to avoid ?

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

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

发布评论

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

评论(1

咆哮 2024-12-08 06:07:23

这就像问勺子在什么情况下没用一样。

时,使用注释通常是有益的

  • 相反,当您构建一个将由许多组件使用的框架 。

    • 例如我曾经制作过一个gui框架并添加了@CSS等注释。
    • 我认为 Hibernate 提供了一种基于注释的数据库映射的好方法
  • 您需要执行一些编译时任务,例如生成 javadoc。

  • 依赖注入

It's like asking in which situations a spoon isn't useful.

Instead it can typically beneficial to use annotations when

  • You're constructing a framework which will be used by many components.

    • For instance I once made a gui framework and added annotations such as @CSS etc.
    • Hibernate provides in my opinion a great approach to annotation based database mapping
  • You need to perform some compile-time task, like generating javadoc.

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