使用自定义注释生成biolerplate代码

发布于 2024-12-06 20:55:36 字数 455 浏览 1 评论 0原文

各位, 我即将编写大量 J2EE/JAX-RS 代码,其中几乎所有公共方法都将执行以下操作:

  • 查找请求标头中是否存在安全令牌。
  • 调用实用程序以确保令牌有效。
  • 如果无效,则返回错误响应(或注入空令牌)
  • 如果有效,则执行一些操作,这可能涉及内省令牌。
  • 在大多数情况下,在响应标头中返回更新的令牌。

我希望能够使用注释来抽象出这篇文章。我在该方法上想象类似以下内容:

@RequireToken( returnRenewed=true )
@POST
@Path( "/some/path" )
public Result myMethod( ... )
{
    @InjectedToken
    final Token securityToken;
    ...
}

有关如何继续的任何指示?

Folks,
I am about to write a ton of J2EE/JAX-RS code where practically all public methods will do the following:

  • Look for the presence of a security token in the request header.
  • Call a utility to make sure the token is valid.
  • If not valid, return an error response (or inject a null token)
  • If valid, do some stuff, which might involve introspecting the token
  • In most cases, return an updated token in response headers.

I'd love to be able to use annotations to abstract out this piece. I am imagining something like the following on the method:

@RequireToken( returnRenewed=true )
@POST
@Path( "/some/path" )
public Result myMethod( ... )
{
    @InjectedToken
    final Token securityToken;
    ...
}

Any pointers on how to proceed?

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

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

发布评论

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

评论(1

蹲墙角沉默 2024-12-13 20:55:36

您是否考虑过使用 Spring Security 来执行这些操作?您可以实现自己的身份验证过滤器。

如果不是 Spring Security,也许是 AOP 和“之前”或“周围建议”?

Have you considered using spring security for those actions? You might implement your own authentication filters.

If not spring security, maybe AOP and "before" or "around advice"s ?

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