Spring Boot 2.0,在运行时读取最大请求大小,最大文件大小配置值

时间:2018-07-24 14:31:24

标签: spring-boot tomcat

使用Spring Boot 2.0的默认实现,是否有一种方法可以注入对容器配置的引用,以便我可以在运行时读取最大请求大小(post)和最大文件大小属性的值?

我当时想在@Configuration类中使用类似的方法,但是它不能解析为值。

@Value("${server.tomcat.max-http-post-size}")
public String maxPostSize;

1 个答案:

答案 0 :(得分:0)

通过注入ServerProperties,我可以访问此信息。但是,如果您使用的是“默认”值,则它们只是以“ 0”表示。设置非默认值将反映在此对象中,因此这是访问信息的正确方法。

enter image description here