-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add example for streaming data with Content-Disposition (#11545)
* docs: add reactive file download example * Add example code snippets (Java, Kotlin, Groovy) with snippet macros
- Loading branch information
1 parent
5a3698c
commit 2b16e3a
Showing
4 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...-suite-groovy/src/test/groovy/io/micronaut/docs/server/transfer/DownloadController.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2017-2020 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.docs.server.transfer | ||
|
||
import io.micronaut.http.HttpHeaders | ||
import io.micronaut.http.HttpResponse | ||
import io.micronaut.http.MediaType | ||
import io.micronaut.http.annotation.Controller | ||
import io.micronaut.http.annotation.Get | ||
import reactor.core.publisher.Flux | ||
|
||
@Controller("/download") | ||
class DownloadController { | ||
// tag::class[] | ||
@Get("/csv") | ||
HttpResponse<Flux<String>> downloadCsv() { | ||
Flux<String> data = Flux.just( | ||
"data1,data2", | ||
"data3,data4" | ||
) | ||
return HttpResponse.ok(data) | ||
.header(HttpHeaders.CONTENT_DISPOSITION, 'attachment; filename="data.csv"') | ||
.contentType(MediaType.TEXT_PLAIN_TYPE) | ||
} | ||
// end::class[] | ||
} |
39 changes: 39 additions & 0 deletions
39
test-suite-kotlin/src/test/kotlin/io/micronaut/docs/server/transfer/DownloadController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2017-2020 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.docs.server.transfer | ||
|
||
import io.micronaut.http.HttpHeaders | ||
import io.micronaut.http.HttpResponse | ||
import io.micronaut.http.MediaType | ||
import io.micronaut.http.annotation.Controller | ||
import io.micronaut.http.annotation.Get | ||
import reactor.core.publisher.Flux | ||
|
||
@Controller("/download") | ||
class DownloadController { | ||
// tag::class[] | ||
@Get("/csv") | ||
fun downloadCsv(): HttpResponse<Flux<String>> { | ||
val data = Flux.just( | ||
"data1,data2", | ||
"data3,data4" | ||
) | ||
return HttpResponse.ok(data) | ||
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"data.csv\"") | ||
.contentType(MediaType.TEXT_PLAIN_TYPE) | ||
} | ||
// end::class[] | ||
} |
40 changes: 40 additions & 0 deletions
40
test-suite/src/test/java/io/micronaut/docs/server/transfer/DownloadController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright 2017-2020 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.docs.server.transfer; | ||
|
||
import io.micronaut.http.HttpHeaders; | ||
import io.micronaut.http.HttpResponse; | ||
import io.micronaut.http.MediaType; | ||
import io.micronaut.http.annotation.Controller; | ||
import io.micronaut.http.annotation.Get; | ||
|
||
import reactor.core.publisher.Flux; | ||
|
||
@Controller("/download") | ||
public class DownloadController { | ||
// tag::class[] | ||
@Get("/csv") | ||
public HttpResponse<Flux<String>> downloadCsv() { | ||
Flux<String> data = Flux.just( | ||
"data1,data2", | ||
"data3,data4" | ||
); | ||
return HttpResponse.ok(data) | ||
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"data.csv\"") | ||
.contentType(MediaType.TEXT_PLAIN_TYPE); | ||
} | ||
// end::class[] | ||
} |