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