悪あがきプログラマー

悪あがきを続けていきたい技術と書評なブログです。トレタでiOSエンジニアやってます。

Slim3

Twitter投稿用アンケートサービスのenquetterをリリースしました。

http://enquetter.appspot.com/ これは何? シンプルなTwitter投稿用アンケートサービスです。 既存のアンケートサービスでは投票を行うためにわざわざリンク先に飛んで投票する必要がありました。 しかし、せっかくTwitterというシンプルなサービス上で使う…

ModelMetaが見つからない。

slim3の新機能Datasoreを試していたら、こんなエラーが。 HTTP ERROR: 500 The meta data of the model(todo.model.Exam) is not found. RequestURI=/admin/eleaning/regist/insert Caused by: java.lang.IllegalArgumentException: The meta data of the mo…

slim3demoで.svnディレクトリが削除できずに嵌った。

環境 OS:Mac snowleopard Eclipse:3.5.0 java:1.6.0_15 やったこと slim3の最新をsvnから取得。 svn checkout http://slim3.googlecode.com/svn/trunk/ slim3-read-onlyeclipseにslim3demoをインポート。 エラー内容 Description Resource Path Location Typ…

slim3itプロジェクト testGet()の目的

slim3itプロジェクトのaddモジュールのテストケースにこんな記述がある。 public void testGet() throws Exception { start("/add/"); IndexController controller = getController(); assertNotNull(controller); assertFalse(isRedirect()); assertEquals(…

Slim3にてJDOデータ登録でエラー

Slim3にてJDOでデータ登録をしようと思ったがうまくいかず。 下記Exceptionが・・・ ERROR 2009-05-31 19:16:19,921 [btpool0-1] The class "The class "demo.model.StoreData" is not persistable. This means that it either hasnt been enhanced, or that…