-
I want to fully replace Spring MVC with Armeria, but there are several frameworks that rely on Servlet for tasks like retrieving HTTP parameters. |
Beta Was this translation helpful? Give feedback.
Answered by
jrhee17
Oct 16, 2023
Replies: 1 comment
-
Hi, Armeria provides an API to retrieve parameters. Server.builder().service("/", (ctx, req) -> {
QueryParams queryParams = ctx.queryParams();
..
});
It might help if you can explain in more detail why you would like this |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
i1619khz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, Armeria provides an API to retrieve parameters.
It might help if you can explain in more detail why you would like this