Interstage Application Server J2EE ユーザーズガイド |
目次 索引 |
第2部 Servlet/JSP編 | > 第7章 Webアプリケーションの開発 | > 7.5 Webアプリケーション環境定義ファイル(deployment descriptor) | > 7.5.3 Webアプリケーション環境定義ファイル(deployment descriptor)のタグの詳細 |
Webアプリケーションで参照する外部リソース環境の定義は、resource-env-refタグで定義します。
------------------------------------------------------------------------------------ <resource-env-ref> <resource-env-ref-name>env-ref-name</resource-env-ref-name> <resource-env-ref-type>type</resource-env-ref-type> </resource-env-ref> ------------------------------------------------------------------------------------
タグ名 |
説明 |
タグの |
複数の |
---|---|---|---|
resource-env-ref-name |
リファレンス名は、Webアプリケーションが外部リソース環境を識別するために任意に指定することができます。 |
× |
× |
resource-env-ref-type |
外部リソース環境参照のデータソースの型を定義します。
|
× |
× |
------------------------------------------------------------------------------------ <web-app> <resource-env-ref> <resource-env-ref-name>jms/sTopic</resource-env-ref-name> <resource-env-ref-type>javax.jms.Topic</resource-env-ref-type> </resource-env-ref> </web-app> ------------------------------------------------------------------------------------
目次 索引 |