Challenge Engineer Life !

エンジニア人生を楽しみたい!仕事や趣味で学んだ技術的なことを書いていくブログです。

GlassFish Users Group Japan勉強会で発表させて頂きました #glassfish_jp

6月に@khasunumaさんから「GlassFish勉強会で発表しませんか?」とお声かけを頂いてから早3カ月あまり。

昨日、青山の日本オラクルさんで行われた

glassfish.doorkeeper.jp

にて発表させて頂きました!m(_ _)m

イベントレポは既に@mike_neckさんがまとめられています!ありがとうございます。

mike-neck.hatenadiary.com

というわけで、私は感想だけ(^^;ちなみにスライドは以下にアップしています。

堀北真希さん結婚後、はじめての社外発表だったため、自己紹介が長めでしたm(_ _)m無事アイスブレイクになったかどうか。

PaaSと絡めてJava EEも結構カジュアルに使えるんですよー、という気持ちも込めた発表を目指した感じでした。

Payara含め、色々遊ぶ方が増えれば幸いです。

……

今回のイベントで初めて、会場準備や受付を少しお手伝いさせて頂きました。わかってはいたものの、あらためてJJUGさんとかその他勉強会での運営の方々の大変さや手際の良さとかを感じました…。

そしてOracle Aceな山田さんにメッチャ色々手伝ってもらってしまって(^^;;感謝感謝です。
手伝ってもらいながらもTogetterまとめされてて、ホントすごい(>_<;

togetter.com


受け付けやってて@suke_masaさんや@n_agetsuさんの発表が聞けず残念(^^;連休でスライド拝見せねば!

www.slideshare.net

www.slideshare.net

www.slideshare.net

懇親会では、以前JJUGイベントで知り合った方々含めて、色んな方とお話できて良かったです。

今日は特にTwitter上でよくお世話になっていた@shimashima35さんとお会いできて良かったなーと(^^)

ファーストコンタクトは受付でしたw

あと帰り道、てんてんさん(@tenten0213)やしょぼちむさん(@syobochim)とお話できて良かった(>_<;;

うらがみさんも大阪からわざわざいらしていたり、GlassFishすげー。

またGlassFishイベントで色々お手伝いできたらいいなーと思います!

PayaraMicro on Heroku !

I'm newbie both Payara and Heroku. Though I tried to play with these for preparing my presentation in Japanese GlassFish User Group event.

glassfish.doorkeeper.jp

About one month ago, I participated Japanese Salesforce event. It was called "Salesforce Summer".eventjp.salesforce.com

At the event, I saw Heroku demonstration. This is the reason why I started to use Heroku.After the event, I checked Heroku site and found good Java tutorial. In the tutorial, the sample Java web application used Spark.

I thought that ... if I use Payara Micro, is it possible to deploy Java EE application to Heroku ?

Finally, it could. Here is procedures.

Getting Started with Java on Heroku

Firstly, I started "Getting Started with Java on Heroku". The tutorial is very polite, so it's easy to do.
f:id:kikutaro777:20150914011127j:plain

  • Installing Toolbelt (for Windows on my environment)
  • heroku login

After that, I cloned "java-getting-started" from github.

git clone https://github.com/heroku/java-getting-started.git

And changed directory.

cd java-getting-started

Next

heroku create
git push heroku master
heroku ps:scale web=1
heroku open

Finally I confirmed the deployed page.

f:id:kikutaro777:20150915233153j:plain

These procedures are same as the tutorial.

PayaraMicro on Heroku

I used the same project, it means I used "java-getting-started" project cloned from GitHub.
It's kind of cheat I think. Normally, it had better create as new project.

Firstly, I changed pom.xml.

<dependency>
    <groupId>fish.payara.extras</groupId>
    <artifactId>payara-micro</artifactId>
    <version>4.1.153</version>
    <type>jar</type>
</dependency>

Also, I edited the code like this.

import fish.payara.micro.BootstrapException;
import fish.payara.micro.PayaraMicro;

public class Main {
  public static void main(String[] args) throws BootstrapException {
      PayaraMicro.getInstance()
                .setHttpPort(Integer.parseInt(System.getenv("PORT")))
                .addDeployment("DeployTarget.war")
                .bootStrap();
  }
}

It's very important to call "setHttpPort(Integer.parseInt(System.getenv("PORT")))", because the port of HTTP on Heroku is binded random.

If that helps, I used NetBeans IDE.

f:id:kikutaro777:20150914012105j:plain

After changing code, I copied from WAR file which is target of deploy to this project.
The War was created by Java EE 7, but I used only JSF and CDI.

Finally, I committed the code and "git push heroku master". Everything was done.

Here is my deployed Java EE app with PayaraMicro on Heroku :)
f:id:kikutaro777:20150915233036j:plain

Enjoy!

にほんブログ村 IT技術ブログへ
にほんブログ村 にほんブログ村 IT技術ブログ Javaへ
にほんブログ村