customerfacade.ejbdd

来自「A J2EE & Jsp Example」· EJBDD 代码 · 共 37 行

EJBDD
37
字号
<?xml version="1.0" encoding="UTF-8"?><ejb-jar>  <enterprise-beans>    <session>      <!--This file contains metadata for a component in Sun One StudioYou should not edit this file directly unless you are attempting to resolvea merge conflict after updating this object from a source code management system.A DTD file which describes the structure of this XML document can be foundin the docs/dtd directory of the Sun One Studio installation in a file calledejb-jar_2_0.dtdThis file describes the structure of a single EJB.It is merged with other deployment descriptors by an EJB Module.-->      <display-name>CustomerFacade</display-name>      <ejb-name>CustomerFacade</ejb-name>      <home>customerejb.CustomerFacadeHome</home>      <remote>customerejb.CustomerFacade</remote>      <local-home>customerejb.LocalCustomerFacadeHome</local-home>      <local>customerejb.LocalCustomerFacade</local>      <ejb-class>customerejb.CustomerFacadeBean</ejb-class>      <session-type>Stateless</session-type>      <transaction-type>Container</transaction-type>      <ejb-local-ref>        <ejb-ref-name>ejb/Customer</ejb-ref-name>        <ejb-ref-type>Entity</ejb-ref-type>        <local-home>customerejb.LocalCustomerHome</local-home>        <local>customerejb.LocalCustomer</local>        <ejb-link>Customer</ejb-link>      </ejb-local-ref>    </session>  </enterprise-beans></ejb-jar>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?