使用 @PreAuthorize 注释 setter 会不会太残酷?

发布于 2024-12-11 15:37:04 字数 228 浏览 0 评论 0原文

我有一个可能由不同演员编辑的特定实体。该场景的一个很好的例子是系统的用户,他可以编辑他们的个人数据(电话号码、电子邮件、密码),但不能修改例如他们的权限或用户名,这当然可以由超级用户来完成用户。

那么,如果我只是用 @PreAuthorize 注解 setter 方法,会不会太残酷太丑陋了?我能想到的唯一缺点是性能损失,但由于没有涉及我正在考虑的实体的批量操作,并且这些设置器永远不会经常被调用,所以现在似乎不再是一个问题。

I have a certain entity that can possibly be edited by different actors. A good example for the scenario would be an user of a system, who can edit their personal data (phone no, e-mail, password), but cannot modify e.g. their privileges or username, which could of course be done by a super-user.

So, would it be too brutal and ugly if I just annotated the setter methods with @PreAuthorize? The only disadvantage I could think of is the performance loss, but since there are no bulk operations involving the entity I am thinking of and those setters will never be called often it doesn't seem like a concern now.

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

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

发布评论

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

评论(1

笛声青案梦长安 2024-12-18 15:37:04

我不建议这样做。首先,如果我看得正确的话,@PreAuthorize 要求一个类是一个 bean。一般来说,实体不是 spring bean(除非您使用 @Configurable 魔法)。所以这是行不通的。

其次,@PreAuthorize 的更好位置是执行修改的业务方法。

I wouldn't advise for that. First, if I see things properly, @PreAuthorize requires a class to be a bean. And generally, entities are not spring beans (unless you use the @Configurable magic). So it just won't work.

Second, the better place for @PreAuthorize is on the business methods that perform the modifications.

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