このウェブサイトは販売用です! playframework-ja.org は、あなたがお探しの情報の全ての最新かつ最適なソースです。一般トピックからここから検索できる内容は、playframework-ja.orgが全てとなります。あなたがお探しの内容が見つかることを願っています!
このウェブサイトは販売用です! playframework-ja.org は、あなたがお探しの情報の全ての最新かつ最適なソースです。一般トピックからここから検索できる内容は、playframework-ja.orgが全てとなります。あなたがお探しの内容が見つかることを願っています!
You are viewing the documentation for the 2.9.x release series. The latest stable release series is 3.0.x. Search Home Working with Play Common topics Configuration §Understanding Play thread pools Play Framework is, from the bottom up, an asynchronous web framework. Thread pools in Play are tuned to use fewer threads than in traditional web frameworks, since IO in play-core never blocks. Because
2012年09月09日22:17 カテゴリScala Playframework2をCentOS(さくらVPS)上で動かしてデーモン化 こちらの通りにやっていきます。このブログには少し補足した内容を記載していきます。 Play framework 2.0でデーモン化する方法 — Gist ポートをあける まずPlayframework2がデフォルトでポート9000番を使うので、あけておきましょう。 $sudo vi /etc/sysconfig/iptables これを追加 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 9000 -j ACCEPT iptablesを再起動 $ sudo /etc/rc.d/init.d/iptables restart jsvc jsvcを用意する部分はこんな感じです。
Neo4J with Scala Play! 2.0 on Heroku In this new posts series I’ll try to gather all steps of a spike I did building a prototype using scala and a graph database. Chosen Technologies Play! Framework as the web framework, in its 2.0 version built from sources. Neo4J as the back end service for storing graph data. Scala for telling the computer what it should do... Here is an overview of what will b
この記事はPlay! framework Advent Calendar 2011 jpの17日目です。 来年の1月頃のリリースに向けて活発な開発が続いているPlay 2.0ですが、コミットログを追っていると、最近テスト関係の変更が少ないのでそろそろfixかと思い、勉強ついでにControllerのテストを書いてみました。 一応、Controllerに対するテストの書き方はPlay 2.0 RC1の公式ドキュメントにも記載されています。 https://github.com/playframework/Play20/wiki/Scalatest テストはspecs2による記述が推奨されているようです。 具体的には、specs2にPlayのヘルパーメソッドを併用します。公式ドキュメントから抜粋したコードが以下です。 object ApplicationSpec extends Specifi
サイバー・バズ開発ブログ サイバー・バズの開発に関してのつれづれブログです ブログ画像一覧を見る « インターンのお知ら・・・ 記事一覧 開発ブログはじめま・・・ » 【play framework 2.x】Play 2.xで単独実行させるバッチの仕組みをつくる 2013-07-28 21:43:51 テーマ:ブログ お久しぶりです。 開発Gエンジニアの内山です。 ブログ開設からだいぶ時間が開いてしまいましたが、 最初のエントリは、バズのサービスでよく使われているjavaのフレームワークplay frameworkからひとネタ書こうと思います。 Play1.xで単独実行させるバッチの仕組み バズの開発では、playの1.x系がよく使われていますが、 Play1.xでは、バッチを実行するためのJobクラスがあり、 以下のブログの仕組みで、Jobクラスをスタンドアロンで実行しています。 pla
作成日 2013年9月26日(木曜)11:55 | 最終更新日 2013年9月26日(木曜)12:01 | 作者: 森 純一 | 参照数: 37 いままで、Play! Frameworkの2.1.1を使っていたのですが、セキュリティ上の脆弱性が見つかったので、2.1.3以上にアップデートする必要が出てきました。 この記事を書いている時点の2.1系の最新版が、2.1.5なので、それにアップデートしてみました。その際の手順をメモしておきます。 元の参考記事はこちらです。 Migration Guide ダウンロード まず、Play!Frameworkの2.1.5をダウンロードしてきて、適切なディレクトリに解凍してパスを通しておきます。 設定ファイルの修正 次に、アプリケーションディレクトリ(以下、sampleとします)にある、project/plugins.sbt ファイルを開き、 addSb
Webinar: Akka 24.05 release highlights Tyler Jewell, CEO, Jonas Boner, founder and CTO, and Michael Nash, CISO, delve into the value and power of these new features and enhancements. Q&A to follow. Lightbend aims to democratize distributed systems for developers Tyler Jewell, CEO of Lightbend, talks about some of the key challenges developers are up against with distributed systems and how Lightbe
Play! frameworkを使っていると、私はどうしてもRuby on Railsと比較してしまいます。 自動的にJOINしてくれない? Ruby on Railsの場合、モデルのfindメソッドに「:joins =>」があると、自動的にJOIN句を含んだSQL文が生成されますが、Play! frameworkのModelクラスは、やってくれない場合があります。 Play! framework 1.0.3をベースに、Userモデル(app/models/User.java)とPrefectureモデル(app/models/Prefecture.java)を作成しました。この2つは、一対多の関係にあります。 Userモデルは、firstName(名)、lastName(姓)、prefecture(都道府県)の3メンバ変数があり、prefectureは、Prefectureテーブルへの外
はじめに Playframework2.1では新機能としてCSRF対策が追加されたそうです。そもそもCSRF対策の機能はPlayframework1.x系には存在した機能ですが、2.0では機能そのものが消えていました。当然といえば当然の復活です。 公式の新機能紹介( Highlights )にも New Filter API and CSRF protection と大きく取り上げています。 新機能紹介のページを読み進めていくと、 The filters project that is part of the standard Play distribution contain a set of standard filter, such as the CSRF providing automatic token management against the CSRF security i
Working with Json JSON basics JSON with HTTP JSON Reads/Writes/Format Combinators JSON automated mapping JSON Transformers Main concepts Section introduction Configuration API HTTP programming Asynchronous HTTP programming The Twirl template engine Form submission and validation Working with Json Working with XML Handling file upload Accessing an SQL database Using the Cache Calling REST APIs with
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く