本文整理汇总了Java中org.springframework.boot.context.embedded.MultipartConfigFactory.setLocation方法的典型用法代码示例。如果您正苦于以下问题:Java MultipartConfigFactory.setLocation方法的具体用法?Java MultipartConfigFactory.setLocation怎么用?Java MultipartConfigFactory.setLocation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.boot.context.embedded.MultipartConfigFactory
的用法示例。
在下文中一共展示了MultipartConfigFactory.setLocation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createMultipartConfig
import org.springframework.boot.context.embedded.MultipartConfigFactory; //导入方法依赖的package包/类
/**
* Create a new {@link MultipartConfigElement} using the properties.
* @return a new {@link MultipartConfigElement} configured using there properties
*/
public MultipartConfigElement createMultipartConfig() {
MultipartConfigFactory factory = new MultipartConfigFactory();
if (StringUtils.hasText(this.fileSizeThreshold)) {
factory.setFileSizeThreshold(this.fileSizeThreshold);
}
if (StringUtils.hasText(this.location)) {
factory.setLocation(this.location);
}
if (StringUtils.hasText(this.maxRequestSize)) {
factory.setMaxRequestSize(this.maxRequestSize);
}
if (StringUtils.hasText(this.maxFileSize)) {
factory.setMaxFileSize(this.maxFileSize);
}
return factory.createMultipartConfig();
}
示例2: multipartConfigElement
import org.springframework.boot.context.embedded.MultipartConfigFactory; //导入方法依赖的package包/类
@Bean(name = "multipartConfigElement")
public MultipartConfigElement multipartConfigElement() {
log.debug("New instance of " + MultipartConfigFactory.class);
MultipartConfigFactory factory = new MultipartConfigFactory();
factory.setMaxFileSize("128MB");
factory.setLocation(System.getProperty("java.io.tmpdir"));
factory.setMaxRequestSize("128MB");
return factory.createMultipartConfig();
}