web应用之EBJ配置与扩展映射

<!-- 配置EJB本地bean的引用 -->
  <!-- 其中ref-type定义bean类型(一种是实体bean,一种是会话bean),local-home和local必须为完全限定名 -->
  <ejb-local-ref>
          <ejb-ref-name>ebj/Customer</ejb-ref-name>
          <ejb-ref-type>Entity</ejb-ref-type>
           <local-home>com.zb.CustomerHome</local-home>
          <local>com.zb.Customer</local>
  </ejb-local-ref>
  
  <!-- 配置EJB远程bean的引用 -->
  <!-- 注意与本地bean的区别,一是用<ejb-ref>标记,二是接口使用<home>和<remote> -->
   <ejb-ref>
          <ejb-ref-name>ebj/Customer</ejb-ref-name>
          <ejb-ref-type>Entity</ejb-ref-type>
           <home>com.zb.CustomerHome</home>
          <remote>com.zb.Customer</remote>
  </ejb-ref>
  <!-- 建立扩展名和MIME类型之间的映射 -->
  <!-- 注意,扩展名前没有.;而且这里不是<file-type>和<content-type> -->
  <mime-mapping>
          <extension>mpg</extension>
          <mime-type>video/mpeg</mime-type>
  </mime-mapping>

你可能感兴趣的:(Web,bean,ejb)