編程生活

             :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            113 隨筆 :: 0 文章 :: 18 評論 :: 0 Trackbacks
          見下面的文檔描述:
          The EJB 3.0 programming model supports the use of generics in the business interface at the class level.

          BEA recommends as a best practice that you first define a super-interface that uses the generics, and then have the actual business interface extend this super-interface with a specific data type.

          The following example shows how to do this. First program the super-interface that uses generics:

            public interface RootI<T> {
              public T getObject();
          public void updateObject(T object);
          }

          Then program the actual business interface to extend Root*<T> for a particular data type:

            @Remote
          public interface StatelessI extends RootI<String> { }

          Finally, program the actual stateless session bean to implement the business interface; use the specified data type, in this case String, in the implementation of the methods:

            @Stateless
          public class StatelessSample implements StatelessI {
          public String getObject() {
          return null;
          }
          public void updateObject(String object) {
          }
          }
          posted on 2008-04-08 13:47 wilesun 閱讀(264) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 江永县| 游戏| 尼木县| 龙南县| 永寿县| 连城县| 陵水| 沧源| 大田县| 商丘市| 玛沁县| 双城市| 喀喇沁旗| 临江市| 新巴尔虎右旗| 志丹县| 梧州市| 铜山县| 西城区| 四平市| 太白县| 新泰市| 大厂| 封丘县| 山西省| 兴业县| 伊吾县| 洞头县| 渝中区| 龙井市| 新余市| 道孚县| 沧源| 新巴尔虎右旗| 新乐市| 广平县| 温州市| 拜泉县| 汽车| 长子县| 鹿泉市|