6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

EclipseのTemplates機能(Playframework2 Java Model.Finder)

Last updated at Posted at 2014-02-01

自分のブログからQiitaに乗り換えようか考え中。。。一旦、Qiitaに投稿してみてから考えよう。

ということで、すんごいちょいネタから。

EclipseのTemplate機能を使って、PlayframeworkのModelのFinderを作ってみる。

  • Preference > Java > Editor > TemplatesでNew...ボタンをクリック
  • 「Name」に「find」
  • 「Context」に「Java」
  • 「Description」に「Playframework Model.Finder」
  • 「Pattern」に以下を入れる
public static Model.Finder<${IDclass}, ${enclosing_type}> find = new Model.Finder<>(${IDclass}.class, ${enclosing_type}.class);
${:import(play.db.ebean.Model)}
  • 「OK」ボタンをクリック

4.png

これで、PlayframworkのModel.Finderを書く時に「find」とタイプすれば、コンテントアシストに表示される。
1.png

選択するとこんな感じに
2.png

このTaskクラスの場合、IDがLongなのでIDclassをLongに書き換えれば、2つあるIDclassがLongになり、完了。
3.png

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?