-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue when running grails test-app (2.3.11) #48
Comments
I'm afraid this project is not actively maintained anymore. Wanna take it over? |
@jakubnabrdalik I'll take it over if no one else has already expressed interest. |
@dpcasady I've given you write rights to the repo. Let's see how you do :) |
I think that access to https://bintray.com/jakubnabrdalik/plugins/jakubnabrdalik.plugins%3Aexcel-export/2.0.1 is also needed... @jakubnabrdalik ? |
@pjagielski it is. I have created a separate org in bintray for it (grails-excel-export) so that I can transfer ownership to this organization. I have invited @dpcasady to that organization. Who should I invite from TouK (you need to have an account on bintray)? |
Thanks! |
@imadi sorry to hijack your issue, I'll look into it later today. |
@jakubnabrdalik my account https://bintray.com/pjagielski |
@pjagielski done |
Hi I have this piece of code in SampleController.groovy which downloads sample excel
def xls = new WebXlsxExporter(filePath).with {
response.setHeader "Content-disposition", "attachment; filename=samole.xlsx"
response.contentType = 'application/vnd.ms-excel'
LOG.info("sample Excel")
save(response.outputStream)
}
Its working normally. But when I do grails test-app I am getting error like
No signature of method: SampleController.save() is applicable for argument types: (org.springframework.mock.web.MockHttpServletResponse$ResponseServletOutputStream) values: [org.springframework.mock.web.MockHttpServletResponse$ResponseServletOutputStream@12b7c618]
I am using excel-export:0.2.1
The text was updated successfully, but these errors were encountered: