タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

javaとMVCに関するtm8rのブックマーク (2)

  • Ozark

    About Ozark is the reference implementation for the Model-View-Controller API 1.0 defined in JSR 371. MVC will provide an action-oriented alternative to JSF which is, by design, component oriented. In an action-oriented framework, developers are responsible for all the controller logic and are given full control of the URI space for their application. For more information on action-oriented vs. co

    tm8r
    tm8r 2015/03/13
  • Java Solution FAQ:ServletとJPS、Beanの連携方法

    ServletとJSP、Beanを使用してWebアプリケーションを作成する場合、BeanをModel(モデル)、JSPをView(ビュー)、ServletをController(コントローラ)というようにMVCアーキテクチャにマッピングするとよいでしょう。 では、実際にどのようにServlet+JSP+BeanをMVCアーキテクチャにマッピングするのか、「電話番号検索アプリケーション」の作成を通して見ていきましょう。 ●電話番号検索アプリケーションの仕様 まず、作成するアプリケーションの仕様を決定します。「電話番号検索アプリケーション」は、クライアントから送信される氏名をキーとして電話番号を検索し、結果を表示する機能を持つことにします。実際の流れとしては以下のようになります。 氏名を入力送信 ↓ 番号の検索 ↓ 結果を表示 ●Bean(Model)の作成 一般的にModelとは、アプリケー

    tm8r
    tm8r 2009/06/15
  • 1