Add more parameters to `ArmeriaSettings`
See original GitHub issueCurrently, AmreriaSettings has only limited configuration parameters.
If users want to set a parameter(e.g. maxRequestLength), they need to implement a bean:
@Bean
public ArmeriaServerConfigurator setMaxRequestLength() {
return sb -> sb.maxRequestLength(...);
}
It would be nice if we provide more parameter setters to ArmeriaSettings from the ServerBuilder.
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (7 by maintainers)
Top Results From Across the Web
Index (Armeria 1.10.0 API reference) - javadoc.io
Adds new parameters with the specified name and values . ... ArmeriaSettings() - Constructor for class com.linecorp.armeria.spring.
Read more >Annotated services — Armeria documentation
If multiple parameters exist with the same name in a query string, they can be injected as a List<?> or Set<?> , e.g....
Read more >Pass multiple parameters in Spring batch - java - Stack Overflow
We use the following to pass the multiple parameters to a job private JobParameters buildJobParameters(String date,String wfId){ return new ...
Read more >Passing multiple parameters to bean - JBoss.org
Hi, is it possible to pass multiple parameters to a bean. For example I have the following method within my bean
Read more >Passing parameters to a backing bean method — oracle-tech
Imagine that i create a new button on the system, than i need to put the button on a page, i do not...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I need it. Let me work ✋
I grouped for consistency since many spring-boot properties are grouped. However @ikhoon’s comment look reasonable to ungroup 👍