[info] Reapplying settings... [info] Set current project to reactive-aws-clients-project (in build file:/home/parallels/Sources/reactive-aws-clients/) WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.twitter.jvm.Hotspot (file:/home/parallels/.cache/coursier/v1/https/repo1.maven.org/maven2/com/twitter/util-jvm_2.12/20.3.0/util-jvm_2.12-20.3.0.jar) to field sun.management.ManagementFactoryHelper.jvm WARNING: Please consider reporting this to the maintainers of com.twitter.jvm.Hotspot WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release 2020-03-27 04:55:45.069-0700 info [finagle] Using bridged scheduler with 4 workers 2020-03-27 04:55:45.074-0700 info [finagle] Finagle version 20.3.0 (rev=e3fd6d1bd88c9ed7edeb98a6598e23800924c633) built at 20200308-110321 2020-03-27 04:55:45.740-0700 info [SonatypeService] sonatypeRepository : https:
売り切りの通常の自動販売機 モデルではなく、サービスとしての自動販売機を考える。サービスの特徴は以下。
- 利用者はあらかじめ会員登録が必要で、月額100円で専用のスマフォアプリから何度でも飲料を購入できる
Lean Architecture APPENDIX A, ScalaでのDCIサンプルです。コプリエンさん作です。
increaseBalance
でUnit
を返すとはないわ〜。(今どき可変オブジェクトを中心にドメインを考えたくないという意味で。多分こういう考え方の人は関数型勢に多い。
import java.time.Instant // 元のサンプルはjava.util.Dateだったがさすがにそれは辞めろ的な意味で書き換えた
// Data
trait Account {
protected var balance: Long = 0
https://github.com/j5ik2o/akka-persistence-dynamodb
sbt.version = 1.3.0 にしてビルドしたら以下のエラー
以前、sbt-coursierにしたときも同様のエラーでたことある
$sbt clean compile
[info] Loading settings for project global-plugins from idea.sbt,sbt-updates.sbt,plugins.sbt ...
現場で役立つシステム設計の原則 〜変更を楽で安全にするオブジェクト指向の実践技法
「CHAPTER1 目的ごとに変数を用意する」の話題
やっていること
- ベース価格の計算
- 送料の加算
- 税額の加算
勉強会に参加する方は、以下の映画料金表を参考して、映画料金を決定するドメインモデルを考えて実装してください(実装言語はScalaを想定しています。が、チームで相談して違う言語を選択してもよいです)
具体的には、入力として顧客や時間の条件を与えると何らかの計算を行い、出力として映画の価格を返してくれるクラスを実装するイメージです(ドメイン駆動設計の戦術的なプラクティスにこだわらなくてもOKです)。入力条件から複数の映画料金が求められる場合は安い価格を決定してくださいね…。クラスは何個作っても構いません。ただし永続化とかGUIのことは考えないでください。動作を確認できる、コンソールアプリケーションかユニットテストがあれば十分です。
https://cinemacity.co.jp/ticket/
以下の要件を満たすのは必須ではないですが、時間がある方は挑戦してみてください。思った以上に複雑な要件なので注意してください。 また、レディースディ(女性でかつ毎週水曜は安くなる)など新しいルールを作って実装してもOKです。
package domain
import java.time.temporal.ChronoUnit
import java.time.{DayOfWeek, LocalDate, LocalDateTime}
import enumeratum._
sealed trait Age extends Ordered[Age] {
def breachEncapsulationOfValue(today: LocalDate): Int
入力されたリストの要素を2倍し合計する関数
def loop(in: List[Int], acc: Int): Int =
in match {
case Nil => acc // 終了条件
case head :: tail =>
val result = head * 2 // headのタスク
loop(tail, acc + result) // 残りのリストと計算途中を渡して処理を継続
}
public static boolean isNameHashUpperCase(String name) {
boolean result = false;
for (int i = 0; i < name.length; i++) {
if (Character.isUpperCase(name.charAt(i)) {
result = true;
break;
}
}
return result;