2016-12-01から1ヶ月間の記事一覧

Spring Bootで簡単なRESTアプリを作成する

Spring Bootを使ってREST Serviceを作るのは非常に簡単です。 まず、Beanクラスを作成します。 package com.example; import java.io.Serializable; public class Message implements Serializable { private String text; public String getText() { return…

C#でシャットダウンのイベントを受け取って処理を実行する

シャットダウンする直前に処理を走らせる作業を実行したいと考えています。ProエディションならGroup Policyに記述を追加すればシャットダウンに引っかけてスクリプトを実行することができるのですが、Home Editionだとうまくいきません。 なので、自作スク…

MacにTomcatをインストールしてEclipseから動かしてみる。

Homebrewでインストールできます。`` $ brew install tomcat==> Using the sandbox ==> Downloading https://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-8/v8.5.9/bin/apache-tomcat-8.5.9.tar.gz ==> Best Mirror http://ftp.jaist.ac.jp/pub/apach…