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 | 29 | 30 |
Tags
- kafka streams
- kafka interactive query
- kafkastreams
- Elasticsearch
- schema registry
- aws
- kafkastream
- Elk
- Slick
- play framework
- scala 2.10
- spring-cloud-stream
- Logstash
- statestore
- 카프카
- 플레이 프레임워크
- scala
- springboot
- RabbitMQ
- avo
- coursera
- confluent
- enablekafkastreams
- 한빛미디어
- spring-batch
- gradle
- reactive
- spring-kafka
- Spring
- Kafka
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