我可以限制网站的文件上传大小。这是我的代码:
def p = request.getFile('as')
if(!a.empty) {
a.transferTo( new File(abass) )
response.sendError(200,'Done')
有没有办法以编程方式执行,或者我是否需要在Grails配置文件中更改某些内容?
答案 0 :(得分:3)
我认为你应该能够使用以下内容,将其转换为resources.groovy DSL格式,它应该有用......
<bean id="multipartResolver">
<property name="maxUploadSize">
<value>xxxxxxxx</value>
</property>
</bean>
答案 1 :(得分:0)
您可以查看file uploader plugin。它可以轻松配置上传的最大大小和类型等。