Twitterのハッシュタグを遡って見つけたものをリストアップしてみた。
- ScalaとKotlinを業務で使ってみた
- Reladomo in Scala
- Ladder of CQRS + ES
- https://www.slideshare.net/MasakiToyoshima/ladder-of-cqrses
Twitterのハッシュタグを遡って見つけたものをリストアップしてみた。
function peco-git-checkout() { | |
local BRANCH=`git branch -a | peco` | |
if [[ -z "$BRANCH" ]]; then | |
return | |
fi | |
if [[ "$BRANCH" =~ remotes/([^/]*)/(.*) ]]; then | |
git checkout -b ${BASH_REMATCH[2]} ${BASH_REMATCH[1]}/${BASH_REMATCH[2]} | |
else | |
git checkout $BRANCH | |
fi |
open-github() { | |
open "https://github.com/search?q=$1+in%3Aname&type=Repositories" | |
} |
function peco-sbt-new() { | |
local TEMPLATE=`curl https://github.com/foundweekends/giter8/wiki/giter8-templates -s | grep "\.g8<" | sed -e "s/</ /g" -e "s/>/ /g" | awk '{print $3}' | peco | head -n 1` | |
if [[ -z "$TEMPLATE" ]]; then | |
return | |
fi | |
sbt new $TEMPLATE | |
} |
原文はこちら: https://www.playframework.com/documentation/2.6.x/Highlights26
アプリケーションではplay.api.Play.current
/ play.Play.application()
でグローバルアプリケーションにアクセスできるけど非推奨。以下のようにして禁止することもできる。
play.allowGlobalApplication=false
package com.example.service; | |
import static org.junit.Assert.*; | |
import static org.mockito.Mockito.*; | |
import java.util.Collections; | |
import com.example.repository.CustomerRepository; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import org.springframework.beans.factory.annotation.Autowired; |
The main goal of Scalatra 2.6.x is to decrease future maintenance efforts and costs, since there are not enough active committers to maintain the existing huge codebase. To achieve this goal, I propose the followings:
More specific tasks:
package akka.stream.alpakka.elasticsearch.javadsl | |
import spray.json._ | |
import scala.collection.mutable | |
/** | |
* Helpers to use spray-json in Java. | |
*/ | |
object SprayJsonSupport { |
title | layout | author | date | |
---|---|---|---|---|
Scalatra 2.5.1 is out |
news |
Naoki Takezoe |
takezoen |
2017-06-01 |
The Scalatra team is pleased to announce the release of version 2.5.1 of the framework. This is a maintenance release which fixes some Swagger2 support bugs in 2.5.0.