Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- spring-cloud-stream
- spring-kafka
- kafkastreams
- 플레이 프레임워크
- play framework
- Logstash
- Slick
- Elasticsearch
- Elk
- enablekafkastreams
- kafka interactive query
- scala
- Kafka
- statestore
- scala 2.10
- avo
- 카프카
- aws
- spring-batch
- kafkastream
- RabbitMQ
- gradle
- 한빛미디어
- Spring
- springboot
- kafka streams
- schema registry
- coursera
- reactive
- confluent
Archives
- Today
- Total
목록import (1)
b
Play of Scala - import 의 위치
package controllersimport play.api.mvc.{ Action, Controller } object Barcodes extends Controller { val ImageResolution = 144 def barcode(ean: Long) = Action { import java.lang.IllegalArgumentException val MimeType = "image/png" try { val imageData = ean13BarCode(ean, MimeType) Ok(imageData).as(MimeType) } catch { case e: IllegalArgumentException => BadRequest("Couldn’t generate bar code. Error: ..
play framework
2013. 1. 30. 16:10